JSFiddle - React, Tailwind, and code Playground

HTML

<div id="dad">

     <div id="bro">A</div>
     <div id="sis">B</div>

</div>

CSS

#dad:hover #bro {
     background: red;
}

#dad:hover #sis {
     background: green;
}