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></div>
CSS
div:hover + a + div {height:100px; width:100px; background:salmon;}
a:hover + div {height:100px; width:100px; background:lightblue;}
/* div:hover ~ div {} */