Accessibility
- The switch has role
switch
. - The switch has an accessible label provided by one of the following:
- Visible text content contained within the element with role
switch
. - A visible label referenced by the value of
aria-labelledby
set on the element with roleswitch
. aria-label
set on the element with roleswitch
.
- Visible text content contained within the element with role
- When on, the switch element has state
aria-checked
set totrue
. When off, it has statearia-checked
set tofalse
. - Use a
fieldset
to create a switch group.