JSFiddle - React, Tailwind, and code Playground
by naykris
HTML
<div class="one">Name</div>
<div class="two">Surname</div>
<div class="three">Opps</div>
CSS
.three {
color: orange;
}
.one:hover + .two + .three {
color: green;
}
by naykris
<div class="one">Name</div>
<div class="two">Surname</div>
<div class="three">Opps</div>
.three {
color: orange;
}
.one:hover + .two + .three {
color: green;
}