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;
}