美文网首页
餐厅游戏

餐厅游戏

作者: 冷暖自知_2237 | 来源:发表于2019-03-21 16:08 被阅读0次

    1: plate 元素选择器

    2: bento 元素选择器

    3: #fancy ID选择器

    4: plate>apple 子代元素选择器

    5: #fancy>pickle 子代选择器

    6: .small 类选择器

    7: bento>orange,plate>.small 子代选择器、分组选择器、类选择器

    8: bento>orange 子代选择器

    9: plate,bento 元素选择器、分组选择器

    10: * 通配选择器

    11: plate>* 子代选择器、通配选择器

    12: plate+.small,plate+apple

    13: bento~pickle

    14: plate>apple 子代选择器

    15: plate>orange:first-child

    16: apple,pickle:only-child

    17: apple,pickle:last-child

    18: :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: orange:last-of-type,apple:last-of-type

    25: bento:empty

    26: apple:not(.big,.small)

    相关文章

      网友评论

          本文标题:餐厅游戏

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