JSFiddle - React, Tailwind, and code Playground
by pepelsbey
HTML
<div class="one">one</div>
<div class="two">two</div>
CSS
div {
padding:1em;
background:grey;
}
.one:hover ~ .two {
background:green;
}
by pepelsbey
<div class="one">one</div>
<div class="two">two</div>
div {
padding:1em;
background:grey;
}
.one:hover ~ .two {
background:green;
}