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