Apply CSS styles to all elements except nested elements
P粉865900994
2023-08-01 14:15:45
<p>As an example, if I want Text1 to be red, but not Text2:</p>
<pre class="brush:php;toolbar:false;"><div class="red">
Text1
<p class="notred">Text2</p>
</div></pre>
<p>I tried this in css:</p>
<pre class="brush:php;toolbar:false;">.red :not(.notred) {
color: #ff0000;
}</pre>
<p>Try this, it does not apply styles Text1 or Text2. </p>
You can do this.