JSFiddle - React, Tailwind, and code Playground

by Laura Kishimoto

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;
  }
}