JSFiddle - React, Tailwind, and code Playground
HTML
<input type="radio" name="st" id="radio-on"> on
<input type="radio" name="st"> off
<div id="on">text</div>
CSS
#on {
display: none;
}
#radio-on:checked ~ #on{
display: block;
}
<input type="radio" name="st" id="radio-on"> on
<input type="radio" name="st"> off
<div id="on">text</div>
#on {
display: none;
}
#radio-on:checked ~ #on{
display: block;
}