最佳答案
我有一个包含多个ul
标签的div
标签。
我只能为第一个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中编写:“每个元素,除了第一个”?