JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<span>default style</span>
</div>
<span>how do we make this red?</span>
CSS
span {
color: blue;
:not(.wrapper) > & {
color: red;
}
}
<div class="wrapper">
<span>default style</span>
</div>
<span>how do we make this red?</span>
span {
color: blue;
:not(.wrapper) > & {
color: red;
}
}