JSFiddle - React, Tailwind, and code Playground

by jakelauer

HTML

<input type="checkbox" checked="checked"/>
<input type="checkbox"/>
<input type="checkbox"/>
<input type="checkbox"/>
<input type="checkbox"/>

CSS

input[type=checkbox]
{
    display: block;
}

input[type=checkbox]:after
{
    content: "Checkbox";
    padding-left: 15px;
}