JSFiddle - React, Tailwind, and code Playground
by joplomacedo
HTML
<div>
<input type="checkbox" name="vehicle" value="Bike" /><br />
<input type="checkbox" name="vehicle" value="Car" /><br />
<input type="button" value="click me" />
</div>
CSS
div {
position: relative;
}
div:after {
content: "";
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
}