JSFiddle - React, Tailwind, and code Playground
HTML
<div id="a">Div A</div>
<div id="b">Div B</div>
<div id="c">Div C</div>
<div id="d">Div D</div>
CSS
#a:hover ~ #b,
#a:hover ~ #c,
#a:hover ~ #d{
background: #ccc
}
#b:hover ~ #a,
#b:hover ~ #c,
#b:hover ~ #d{
background: #ccc
}
#c:hover ~ #a,
#c:hover ~ #b,
#c:hover ~ #d{
background: #ccc
}
#d:hover + #a,
#d:hover + #b,
#d:hover + #c{
background: #ccc
}