JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
    <a href="#" id="trigger">Trigger</a>
</div>
<div class="sibling">
    <div id="change">Hello</div>
</div>

CSS

.parent:hover + .sibling div#change{background:red;}