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

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){
        border-right: 1px solid rgba(153, 151, 151, 0.75);
    }

其他回答

你的示例在IE中不能为我工作,你必须在你的文档中指定Doctype头,以IE中使用内容CSS属性的标准方式渲染你的页面:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<html>

<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
    <li>Five</li>
</ul>

</html>

第二种方法是使用css3选择器

li:not(:last-of-type):after
{
    content:           " |";
}

但是您仍然需要指定Doctype

第三种方法是使用JQuery和一些脚本,如下所示:

<script type="text/javascript" src="jquery-1.4.1.js"></script>
<link href="style2.css" rel="stylesheet" type="text/css">
</head>
<html>

<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
    <li>Five</li>
</ul>

<script type="text/javascript">
  $(document).ready(function () {
      $("li:not(:last)").append(" | ");
    });
</script>

第三种方法的优点是你不需要指定文档类型,jQuery将负责兼容性。

对我来说很好

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

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

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

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

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

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

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

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

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

希望它能起作用