Checkbox lets users select one or more values.
Checkboxes lets users select one or more values from a list of options. Options are not mutually exclusive here so the selection of any option won’t affect the other.
The default variant comes with a checkbox control and a label, to cater most of the use cases. This entire combination of checkbox control and label is clickable to change the checkbox selection.
A checkbox can have a help text below the label to provide additional information about that particular option. The help text will always be aligned to the label. Clicking over the help text will not change the state of checkbox.
Checkbox comes in two sizes - small and regular.
Checkbox has three selection states - checked, unchecked and indeterminate.
Checkbox has five interactive states - default, hover, active, focus and disabled.
Property | Value(s) |
---|---|
Spacing between checkbox control and label | 8 px |
Size |
|
Property | Value(s) | Default value |
---|---|---|
Size |
| Regular |
Label (optional) | <label> | - |
Help text (optional) | <help text> | - |
Checkbox group is a list of multiple standalone checkboxes with a group label on the top.
Note: Multiple checkboxes should have a minimum of 4px spacing in between.
A group of checkboxes can be aligned either vertically or horizontally. However, it is advisable to stack the checkboxes vertically with one option in a line for easier reading and scanning. If you need to use them horizontally, make sure to space the options appropriately so that it is clear which control goes with which label.
Checkboxes can be nested in case of a list having sub-sections. The parent remains unchecked if no child is checked.
Indeterminate state of the parent shows a partially checked state when there is a nested relationship. The parent checkbox will remain indeterminate until some of its children checkboxes are checked.
If the label or the help text with the checkbox overflows, wrap it to the next line but make sure that the control and the label are top aligned.
Radio buttons allow only one selection from a list of mutually exclusive options whereas checkboxes allow users to select multiple options.
Checkbox should be considered instead of a switch when a confirmation action is required to apply the changes. For example in forms etc.
Checkboxes should be used when there are fewer than 5 options as they are easy to scan and save an additional click of opening a dropdown.
However, if the number of options exceeds 5 or if the space is limited then it is recommended to use dropdowns.