JSFiddle - React, Tailwind, and code Playground

by J. Albert Bowden

HTML

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

CSS

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

/* div:hover ~ div {} */