拓展选择器

1.选择器

选择第一个子元素
    div>p:first-child{}    /*选择div里面第一个子元素*/

选择最后一个子元素
    div>p:last-child{}     /*选择div里面最后一个子元素*/

选择某一个子元素
    ul li:nth-child(index)  even偶数 odd奇数
不选中某个
    :not(selector)

2.多行复制:div>p{hello$}*5

hello1

hello2

hello3

hello4

hello5

3.套a标签的复制:ul>li.item*4>a[href=#].name{首页}


你可能感兴趣的:(拓展选择器)