JSFiddle - React, Tailwind, and code Playground

by fliptheweb

HTML

<label for="1">
  <input type="radio" value="f" name="gender" id="1" />
  <span>wtf</span>
</label>
<label for="2">
  <input type="radio" value="f" name="gender" id="2" />
  <span>wtf2</span>
</label>

CSS

input {
      
    }
    
    input:focus + span {
      color: red;
    }