Tronic247 Material
Components

Checkboxes

Normal Checkbox

<label class="checkbox">
    <input type="checkbox">
    <span>Check me</span>
</label>

Disabled Checkbox

<label class="checkbox">
    <input type="checkbox" disabled>
    <span>Check me</span>
</label>

Checkbox without a label

If there is no label for the checkbox, the span element should not be removed.

<label class="checkbox">
    <input type="checkbox">
    <span></span>
</label>