JSFiddle - React, Tailwind, and code Playground
by swfour
HTML
<div id="cont">
<p class="hello" id="hello">I wish I was blue</p>
<p class="hello">I wish I was blue</p>
</div>
CSS
#cont .hello:not(#hello) {
color:red;
}
#hello {
color:blue;
}