JSFiddle - React, Tailwind, and code Playground

by charlescarver

HTML

<div id="count1">My visible element</div>
<div id="count2">My flickering element</div>

CSS

#count2 {
    visibility:hidden;
}

#count1:hover {
    background: #123456;
}

#count1:hover + #count2 {
    visibility: visible;
}