我正在尝试在我的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
但我没有得到如何为我的要求编写规则。
任何帮助?