JSFiddle - React, Tailwind, and code Playground
HTML
<div id="red"></div>
<div id="blue"></div>
CSS
#red, #blue {
position: absolute;
width: 100px;
height: 100px;
}
#red:hover {
background-color: yellow !important;
}
#red:hover + #blue {
background-color: yellow !important;
}
#red {
background-color: red;
}
#blue {
background-color: blue;
top: 50px;
left: 50px;
}