JSFiddle - React, Tailwind, and code Playground

by Artūrs Jansons

HTML

<input type="checkbox"/>
<p><input type="checkbox"/></p>
<div><input type="checkbox"/></div>
<span><input type="checkbox"/></span>
<table><tr><td><input type="checkbox"/></td></tr></table>

CSS

* {
    outline: 1px dotted lightblue;
}
[type=checkbox] {
    -webkit-appearance:inherit;
    -moz-appearance:inherit;
    -ms-appearance:inherit;
    -o-appearance:inherit;
    appearance:inherit;
}