JSFiddle - React, Tailwind, and code Playground

by DoubleYo

HTML

<div>
    <div class='top-class' tabindex=1>Header Name</div>
    <div class='body-class'>This is body a</div>
</div>


<div>
    <div class='top-class' tabindex=2>Another Header Name</div>
    <div class='body-class'>Another body</div>
</div>

CSS

/* .top-class:hover + .body-class { display: block; background-color: red; } /* This is working */
.top-class:focus + .body-class { display: block; background-color: red; } /* This is working */