美文网首页
HTML中《餐厅》练习题

HTML中《餐厅》练习题

作者: HDhandi | 来源:发表于2018-06-03 20:49 被阅读0次

    1-----plate 元素选择器
    2-----bento 元素选择器
    3-----#fancy ID选择器
    4-----plate apple 后代元素选择器
    5-----#fancy pickle 复合选择器
    6-----.small 类选择器
    7-----bento .small,plate .small并集选择器
    8-----bento orange 后代元素选择器
    9-----plate,bento,plate 并集选择器
    10---- * 通配选择器
    11---- plate * 后代元素选择器 (plate中的所有元素)
    12----plate + apple 兄弟元素选择器
    13----bento~pickle 兄弟元素选择器(bento后面所有的pickle)
    14----plate > apple 子元素选择器
    15----orange:first-child 子元素选择器
    16----:only-child 子元素选择器(只有一个子元素的)
    17-----.small:last-child 子元素选择器
    18-----plate:nth-child(3) 子元素选择器
    19-----:nth-last-child(4)子元素选择器
    20-----apple:first-of-type 子元素选择器
    21-----plate:nth-of-type(even) 子元素选择器
    22-----plate:nth-of-type(2n+3)子元素选择器
    23-----apple:only-of-type 子元素选择器
    24-----.small:nth-child(even) 子元素选择器
    25-----bento:empty 子元素选择器(子元素为空)
    26-----apple:not(.small) not选择器

    相关文章

      网友评论

          本文标题:HTML中《餐厅》练习题

          本文链接:https://www.haomeiwen.com/subject/srlssftx.html