JSFiddle - React, Tailwind, and code Playground

by Michael Lajlev

HTML

<div>
    <input type="checkbox" checked>
    <p>Test</p>
</div>

CSS

div {
    background: pink;
    width: 50px;
    height:50px;
}
div + input[type=checkbox]:checked {
  background: green;
}

input[type=checkbox]:checked + p {
    background: blue;
}