JSFiddle - React, Tailwind, and code Playground
by Shankar
HTML
<div id="ck-button">
<label>
<input type="checkbox" value="1"><span>red</span>
</label>
</div>
CSS
div label input {
margin-right:100px;
}
body {
font-family:sans-serif;
}
#ck-button {
margin:4px;
background-color:#ffff;
border-radius:4px;
border:1px solid #FF0000;
overflow:auto;
float:left;
}
#ck-button:hover {
background:red;
}
#ck-button label {
float:left;
width:4.0em;
}
#ck-button label span {
text-align:center;
padding:3px 0px;
display:block;
}
#ck-button label input {
position:absolute;
top:-20px;
}
#ck-button input:checked + span {
background-color:#911;
color:#fff;
}