我有一个div
包含多个ul
标签的标签。
我ul
只能为第一个标记设置CSS属性:
div ul:first-child {
background-color: #900;
}
但是,我以下尝试为ul
除第一个标签之外的其他每个标签设置CSS属性不起作用:
div ul:not:first-child {
background-color: #900;
}
div ul:not(:first-child) {
background-color: #900;
}
div ul:first-child:after {
background-color: #900;
}
如何在CSS中编写“除第一个元素外的每个元素”?