JSFiddle - React, Tailwind, and code Playground

by liyuankui

HTML

<input type="checkbox" id="chk1" /><br/>
<input type="checkbox" id="chk2" /> <label for="chk2">Some label</label>

CSS

input[type=checkbox]:before { content:""; display:inline-block; width:16px; height:16px; background:red;}
input[type=checkbox]:checked:before { background:green; }


/* images */
input[type=checkbox]:before { background:...