JSFiddle - React, Tailwind, and code Playground
by Karen Maritz
HTML
<input type="checkbox" name="vehicle" value="Bike"> I have a bike<br>
<input type="checkbox" name="vehicle" value="Car" checked> I have a car<br>
<input type="checkbox" name="vehicle" value="Car" checked> I have a bus<br>
CSS
input[type=checkbox] {
margin-right: 5px;
cursor: pointer;
font-size: 14px;
width: 15px;
height: 12px;
position: relative;
}
input[type=checkbox]:after {
position: absolute;
width: 10px;
height: 15px;
top: 0;
content: " ";
background-color: #fff;
color: #000;
display: inline-block;
visibility: visible;
padding: 0px 3px;
Border:1px solid #000;
}
input[type=checkbox]:checked:after {
content: "✓";
font-size: 12px;
}