让最后一个李不包含特定的课程

时间:2017-11-23 13:14:59

标签: css less

我正在尝试在我的less文件中编写一个css规则,我想找到最后一个没有特定类的li元素。这就是我的ul呈现

的方式
<ul>
   <li></li>
   <li></li> <!––I want to get this one-->
   <li class="another-instance"></li>
   <li class="another-instance"></li>
</ul>

这就是我想要得到它的方式

ul.tree li:last-child:not(.another-instance) {
    background-color:red !important;
}

但它不起作用! 我也尝试过这样的另一个版本

ul.tree li:not(.another-instance):last-child {
    background-color:red !important;
}

但他们两个都不起作用。 我知道我写的规则是转换为

return all the last li's that doesn't have another-instance class

但我没有得到如何为我的要求编写规则。

任何帮助?

0 个答案:

没有答案