JSFiddle - React, Tailwind, and code Playground
by darkajax
HTML
<button>
<input type="checkbox" value="ASDASDASD"> Select Car
</button>
CSS
input[type="checkbox"]:before {
border: 1px solid #333;
content: "\00a0";
display: inline-block;
font: 16px/1em sans-serif;
height: 16px;
margin: 0 .25em 0 0;
padding: 0;
vertical-align: top;
width: 16px;
background: white;
}
input[type="checkbox"]:checked:before {
background: #fff;
color: #333;
content: "\2713";
text-align: center;
}
input[type="checkbox"]:checked:after {
font-weight: bold;
}
input[type="checkbox"]:focus::before {
outline: rgb(59, 153, 252) auto 5px;
}