JSFiddle - React, Tailwind, and code Playground

by Laurent Dufour

HTML

<button class="button">change color</button>
<div class="text">coucou</div>

CSS

.text {
  color: blue;
}
.button:active + .text {
  color: red;
}