JSFiddle - React, Tailwind, and code Playground

by Jerome Dahdah

HTML

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

CSS

p {
  color: red;
}

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