JSFiddle - React, Tailwind, and code Playground

by Jerome Dahdah

HTML

<div>
  <div class="exclude">
    <p>I should be red</p>
  </div>
  <div>
    <p>I should be green</p>
  </div>
</div>

CSS

p {
  color: red;
}

div div:not(.exclude) p {
  color: green;
}