Checkbox

The checkbox class is a simple wrapper around the <input type="checkbox"> HTML element. It is intentionally not styled, to preserve cross-browser compatibility and the user experience.

<label class="checkbox">
    <input type="checkbox">
    Remember me
</label>

Status

<label class="checkbox" disabled>
    <input type="checkbox" disabled>
    Disabled checkbox
</label>