拓展选择器

1.拓展选择器

div>p#id$.name*10>a[href="#"]{$$}:
例:    

01

02

03

04

05

06

07

08

09

10

1.选择第一个子元素
    div>p:first-child{}    /*选择div里面第一个子元素*/
2.选择最后一个子元素
    div>p:last-child{}     /*选择div里面最后一个子元素*/
3.选择某一个子元素
    ul li:nth-child(index)  even偶数 odd奇数   (n+2)
 4.不选中某个
    :not(:last-child)//不选中最后一个

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