我有一个元素可以说它可以有 .foo 或 .bar 或两者都有或没有作为一个类:
<div class="foo bar">green</div>
<div class="foo">green</div>
<div class="bar">green</div>
<div class="something-else">red</div>
我如何测试该元素没有任何一个类。
我尝试了这样的事情,但它没有按预期工作:
div {
background: green;
&:not(.foo) and &:not(.bar) {
background: red;
}
}
我没有看到很多使用 less 和 not() 的示例,在他们的文档中只有 1 个。