标签:
结构性伪类选择器的公共特征是允许开发者根据文档结构来指定元素的样式。 li:first-child{background-color:#ffb90f;}
li:last-child{background-color:#caff70;}
如果页面中具有多个ul列表,则该first-child选择器与last-child选择器对所有ul列表都适用。
另外一些例子:
//所有正数下第奇数个子元素
nth-child(odd){
...
}
nth-child(even){
...
}
//所有正数下倒数第奇数个子元素
nth-last-child(odd){
...
}
//所有正数下倒数第偶数个子元素
nth-last-child(even){
...
}
标签:
原文地址:http://blog.csdn.net/lindonglian/article/details/46443935