JSFiddle - React, Tailwind, and code Playground
HTML
<input id="input"></input>
<label for="input" class="some-styling-class" hidden>
I should be invisible!
</label>
CSS
.some-styling-class:not([hidden]) {
display: block;
color: red;
}