CSS 不包括最后一个孩子

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/7272302/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 01:28:54  来源:igfitidea点击:

Excluding last-child

css

提问by AlexStack

ul li:last-childselects the last element of a list.

ul li:last-child选择列表的最后一个元素。

ul li:not(...)selects an element that is not something

ul li:not(...)选择一个不是某物的元素

What is the CSS selector for excluding the last child of an element? I tried ul li:not(last-child)but it didn't work.

用于排除元素最后一个子元素的 CSS 选择器是什么?我试过 ul li:not(last-child)但它没有用。

回答by minaz

Did you try:

你试过了吗:

ul li:not(:last-child)