JSFiddle - React, Tailwind, and code Playground

by kthornbloom

HTML

<div class="thing">
aslkfj

<div class="stuff">
stuff
</div>
</div>

CSS

.thing {
  border: 1px solid #ccc;
}

.thing:hover ~ .stuff {
  border: 1px solid red;
}