Is there a way to use the CSS3 selector to target an element under a specific class?
<div>
<span>Example Text</span>
</div>
I attempted using div:not(span)
but it didn't work. (I believe the :not pseudo-class only supports targeting div elements). Does anyone have a solution for this?