CSS选择器:last-child
:first-child
定义:必须是其父元素下的第一个子元素
:first-of-type
定义: 其父元素下想同类型子元素中的第一个
:nth-of-type(n)
同 first-of-type
但是可以指定位置
:nth-child(n)
父元素中子元素为第一的元素
取值可以是,2n+1
|| odd
奇数行、2n
|| even
偶数行,n+1
大于1的
:last-child
定义:必须是其父元素下的最后一个子元素
:last-of-type
原理同:first-of-type
:nth-last-of-type
原理同:nth-of-type(n)
:nth-last-child(n)
原理同:nth-child(n)
最后更新于
这有帮助吗?