JSFiddle - React, Tailwind, and code Playground
by DustyWhite
HTML
<section>
<div id="beginning">
<h4>
Not this text!
</h4>
</div>
<div>
<h4 class="small">
This text over here!!!
</h4>
</div>
</section>
CSS
:not(#beginning) h4.small {
color: red;
background-color: aliceblue;
}