JSFiddle - React, Tailwind, and code Playground

HTML

<div class="first"></div>
<div class="second"></div>
<div class="third"></div>

CSS

div {
    height: 80px;
    width: 150px;
    border: 1px solid silver;
    border-radius: 4px;
    margin: 30px 40px;
    background: green;
    cursor: pointer;
}

.first:hover + .second {
    background: orange;
}

.second:hover + .third {
    background: red;
}