JSFiddle - React, Tailwind, and code Playground
HTML
<div class="two">
<div class="on1"></div><br>
<div class="on2"></div>
</div>
CSS
.two .on1 { width:50px; height:50px;background:green;}
.two .on2 { width:60px; height:60px;background:gray; }
.two:hover .on1 { width:50px; height:50px;background:green; }
.two:hover .on2 { width:60px; height:60px;background:black; }