JSFiddle - React, Tailwind, and code Playground

by John Doe

HTML

<div>
  <input type="text">
  <label for="">Loremipum</label>
</div>

<div>
  <input type="checkbox">
  <label for="">DOLOREN</label>
</div>

CSS

label{
  color: red;
}
input[type="checkbox"] ~ label{
  color: green;
}