我有一个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中编写“除第一个元素外的每个元素”?
我没有以上这些运气,
这是唯一真正为我工作的人
ul:not(:first-of-type) {}
当我尝试使页面上显示的第一个按钮不受左空白选项影响时,这对我有用。
这是我首先尝试的选项,但是没有用
ul:not(:first-child)