JSFiddle - React, Tailwind, and code Playground

by Jerome Dahdah

HTML

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

CSS

p {
  color: red;
}

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