Why doesn't this CSS :not() declaration filter down?
-
Both of the
span
elements' parentdiv
elements don't have the classno
, regardless of whether any other ancestors do have it or not:<div> <!-- This is div:not(.no), pretty much a given --> <span>yes 1</span> </div>
<div class="no"> <!-- In this case, although this is div.no... --> <div> <!-- ... this is div:not(.no)! --> <span>no 2</span> </div> </div>
Both
html
andbody
, which are ancestors of yourdiv
andspan
elements, satisfy*:not(.no)
when using a universal selector (or rather, when omitting a type selector). This causes all of yourspan
elements to have the background color.
One solution to this is to anchor your negation filter to the body
element using the child combinator, if your top-level div
elements will always be children of body
:
body > div:not(.no) span { background-color: #00f; }
jsFiddle demo
Another solution is to simply use override styles.
BoltClock is correct. It might make more sense if you phrase the selector like this:
Select any
span
element
that is descended from adiv
element
whoseclass
value does not contain the wordno
.
Each of the selected span
s in your example is in fact descended from a div
whose class
value does not contain the word no
—the fact that the second of them is also descended from a div
whose class
value does contain the word no
doesn’t negate (ha!) the previous statement.
What’s interesting is I would wager that if you moved the second no
down a level, the second span
would still be matched. CSS doesn’t have a notion of element proximity, so any ancestor div
should suffice to match the selector, regardless of whether it’s “closer” to the span
or not.