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
}