JSFiddle - React, Tailwind, and code Playground

HTML

<div id="my"><a id="mylink" href="#">some link</a></div>
<div id="other">another div</div>


<a id="mylink2" href="#">some link2</a>
<div id="other2">another div2</div>

CSS

#my:hover ~ #other2 { color:red } /* user hovers */
#my:active ~ #other  { color: lime } /* active links */


#mylink2:hover ~ #other2 { color:red } /* user hovers */
#mylink2:active ~ #other2  { color: lime } /* active links */