Checkbox

Checkboxes allow users to select one or more options from a list.

Maturity level - ready for production

View the React component implementation details and all variants in Storybook.


Component examples

Default


Guidance

When to use the checkbox component

  • To display multiple answers. When a user can select any number of choices from a list.

  • To allow users to toggle answers. When a user needs to acknowledge acceptance of something (like terms of service) or switch between two opposite states, such as unchecked = “no” and checked = “yes.”

When to consider something else

  • Single-select only. If a user can only select one option from a list of many, use radio buttons instead.

Usability guidance

  • Make the label selectable. Users should be able to select either the text label or the checkbox to select or deselect an option.

  • List options vertically. Horizontal listings can make it difficult to tell which label pertains to which checkbox.

  • Use positive statements. Negative language in labels can be counterintuitive. For example, use “I want to receive a promotional email” instead of “I don’t want to receive a promotional email.”

  • Use logical labels. Make sure that the label makes both states — checked and unchecked — clear to the user. If that’s not possible, consider using a radio button with two individual options instead. Then both states can have their own clearly marked label.

  • Use adequate touch targets. Make sure selections are adequately spaced for touch screens. Consider using the tile variant for larger touch targets.

  • Don’t mix default and tile variants. Pick one implementation and stick with it. When mixed, tiles can appear to indicate a bias or preference toward that option.

  • Use a logical order. Make sure the selection options are organized in a meaningful way, like alphabetical or most-frequent to least-frequent. This helps users easily find the option they’re looking for.


Accessibility

  • Customize form controls accessibly. If you customize this component, ensure that it continues to meet the accessibility requirements that apply to all form controls.

  • Use a fieldset and legend for a checkbox group. Surround a related set of checkboxes with a <fieldset>. The <legend> provides context for the grouping. Don’t use fieldset and legend for a single check.

  • These custom checkboxes are accessible. The custom checkboxes here are accessible to screen readers because the default checkboxes are moved off-screen with position: absolute; left: -999em.

  • Use semantic tags. Each input should have a semantic tag for the id attribute, and its corresponding label should have the same value in its for attribute.


External References

For the immediate future, please use the react or web components provided by the VA Design System.

For usage and accessibility guidelines please refer to the USWDS.