JSFiddle - React, Tailwind, and code Playground
by Neal
HTML
<div class="app">
<a href="#">(h)over here!</a>
</div>
<div class="frame">
</div>
CSS
.app:hover ~ .frame {
background-color: yellow;
}
.frame {
background-color: blue;
width: 300px;
height: 300px;
}