使用 CSS :not:first-child 选择器排除第一个元素
在 CSS 中,:first-child 选择器以第一个元素为目标其父元素的子元素。要排除第一个元素,可以使用反向选择器 :not:first-child。
尝试 1:使用 :not:first-child
div ul:not:first-child { background-color: #900; }
尝试 2:使用:not(:first-child)
div ul:not(:first-child) { background-color: #900; }
尝试 3:使用 :first-child:after
div ul:first-child:after { background-color: #900; }
但是,这些都不是方法达到了预期的结果。
解决方案:使用浏览器兼容性修复
:not 选择器仅接受简单选择器作为其参数。因此,为了支持不支持 :not(:first-child) 语法的旧版浏览器,您可以采用替代技术:
div ul { background-color: #900; }
div ul:first-child { background-color: transparent; }
解释:
第一条规则将背景颜色应用于所有 ul 元素。第二条规则使用背景颜色的默认值(透明),有效地从第一个子 ul 元素中删除背景颜色。
以上是如何使用 CSS 选择器排除第一个元素?的详细内容。更多信息请关注PHP中文网其他相关文章!