爲什麼我不能做div:not(.wrapper2 .exception)
? IE瀏覽器。除.wrapper2 .exception
以外的所有div。無法執行`:not(.foo .bar)`
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;
}
不清楚你在問什麼。除了'.wrapper2 .exception',或'.wrapper2'和'.exception'之外,你想要的是嗎? – Scimonster 2014-09-23 12:13:46
嗨!所有div除'.wrapper2 .exception'是的。謝謝。更新的問題。 – 2014-09-23 12:15:34
這解釋了原因:http://stackoverflow.com/questions/7403129/combining-not-selectors-in-css/7403148#7403148 – 2014-09-23 12:20:03