JSFiddle - React, Tailwind, and code Playground
by Vadim
HTML
<div class="group">
<label for="test">Text</label>
<input type="text" id="test" />
</div>
CSS
.group label {
color: red;
}
.group:focus-within label {
color: green
}
by Vadim
<div class="group">
<label for="test">Text</label>
<input type="text" id="test" />
</div>
.group label {
color: red;
}
.group:focus-within label {
color: green
}