JSFiddle - React, Tailwind, and code Playground
HTML
<button class="button">change color</button>
<div class="text">coucou</div>
CSS
.text {
color: blue;
}
.button:active + .text {
color: red;
}
<button class="button">change color</button>
<div class="text">coucou</div>
.text {
color: blue;
}
.button:active + .text {
color: red;
}