JSFiddle - React, Tailwind, and code Playground
by tenben2
HTML
<input type="checkbox" checked>
<div>
<p>Test</p>
</div>
CSS
div {
background: pink;
width: 50px;
height:50px;
}
input[type=checkbox]:checked+div{
background: green;
}
input[type=checkbox]:checked + div p {
background: blue;
}