gpt4 book ai didi

css - 无法执行 `:not(.foo .bar)`

转载 作者:太空宇宙 更新时间:2023-11-03 20:13:42 24 4
gpt4 key购买 nike

为什么我不能执行 div:not(.wrapper2 .exception)? IE。所有 div 除了 .wrapper2 .exception.

http://jsfiddle.net/frank_o/4swjmhtr/

HTML:

<div class="wrapper1">
<div>
<p>Hi</p>
</div>
<div class="exception">
<p>Hi</p>
</div>
</div>
<div class="wrapper2">
<div>
<p>Hi</p>
</div>
<div class="exception">
<p>Hi</p>
</div>
</div>

CSS:

div:not(.wrapper2 .exception) {
background: blue;
color: white;
}

最佳答案

你不能像这样组合not()选择器,一次只能进去一个选择器。

要在 .wrapper2 中选择除 .exception 之外的所有 div:

div:not(.wrapper2) div:not(.exception)

关于css - 无法执行 `:not(.foo .bar)`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25994794/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com