JSFiddle - React, Tailwind, and code Playground

HTML

<div>Hover over me</div>
<a href="">Then hover over me, then hover on the first again</a>
<div class="force-repaint"></div>

CSS

.force-repaint { -webkit-animation: bugfix infinite 1s; }
@-webkit-keyframes bugfix { from { fill: 0; } to { fill: 0; } }
div:hover + a + div {height:100px; width:100px; background:salmon;}
a:hover + div {height:100px; width:100px; background:lightblue;}

/* div:hover ~ div {} */