我有一个元素列表,它的样式是这样的:

ul { list-style-type:没有; text-align:中心; } 李{ 显示:内联; } 李:不(胎):{ 内容:“|”; } < ul > <李>一个李< / > <李>两个李< / > <李> 3 < /李> <李>四个李< / > <李> 5李< / > < / ul >

输出One | Two | Three | Four | Five |而不是One | Two | Three | Four | Five

有人知道CSS如何选择除最后一个元素以外的所有元素吗?

你可以在这里看到:not()选择器的定义


当前回答

一切似乎都是正确的。您可能希望使用以下css选择器而不是您使用的。

ul > li:not(:last-child)::after

其他回答

如果not选择器有问题,你可以设置所有的选项并覆盖最后一个选项

li:after
{
  content: ' |';
}
li:last-child:after
{
  content: '';
}

或者如果你可以使用before,不需要最后一个孩子

li+li:before
{
  content: '| ';
}

对我来说很好

&:not(:last-child){
            text-transform: uppercase;
        }

删除last-child之前的:和used之后的:

 ul li:not(last-child){
 content:' |';
}

希望它能起作用

删除last-child之前的:和used之后的:

ul > li:not(:last-child):after {
   border-bottom: none !important;
}

一切似乎都是正确的。您可能希望使用以下css选择器而不是您使用的。

ul > li:not(:last-child)::after