Choice Styles

Style checkboxes, radios, and switches without replacing native controls.

Inline choices keep a shared name

Practice days
Preferred jersey size

A switch is still a checkbox

Use a real checkbox. CSS changes the appearance with :checked. Disabled switches must stay keyboard-focusable only when they are not disabled.

What to remember

Important HTML

A switch is a labelled checkbox. Presentation comes from CSS classes.

<div class="switch-row">
  <input class="switch-input" id="notify-email" name="emailNotify"
    type="checkbox" value="yes">
  <label class="switch-label" for="notify-email">Email game reminders</label>
</div>