Radio Group Example Using aria-activedescendant
This example implements the features of the Radio Group Design Pattern
for two radio groups -- one for choosing a pizza crust and another for choosing a delivery method.
This implementation uses aria-activedescendant
for informing assistive technologies which radio button has visual focus.
Similar examples include:
- Radio Group Example Using Roving tabindex: A radio button group that uses roving
tabindex
for managing keyboard focus.
Example
Pizza Crust
- Regular crust
- Deep dish
- Thin crust
Pizza Delivery
- Pick up
- Home Delivery
- Dine in Restaurant
Accessibility Features
- Uses CSS attribute selectors for synchronizing
aria-checked
state with the visual state indicator. -
Uses CSS
:hover
and:focus
pseudo-classes for styling visual keyboard focus and hover.- Focus indicator encompasses both radio button and label, making it easier to perceive which option is being chosen.
- Hover changes background of both radio button and label, making it easier to perceive that clicking either the label or button will activate the radio button.
- Because transparent borders are visible on some systems with high contrast enabled, only the focused element has a visible border. When focusable elements are not focused, they have a 0-width border and additional padding equal in width to the border that is used to indicate focus.
Keyboard Support
NOTE: When visual focus is on a radio button in the radio group, DOM focus remains on the radio group container and the value of aria-activedescendant
on the radio group refers to the radio button that is visually indicated as focused.
Where the following descriptions of keyboard commands mention focus, they are referring to the visual focus indicator, not DOM focus.
For more information about this focus management technique, see
Using aria-activedescendant to Manage Focus.
Key | Function |
---|---|
Tab |
|
Space |
|
Down arrow Right arrow |
|
Up arrow Left arrow |
|
Role, Property, State, and Tabindex Attributes
Role | Attributes | Element | Usage |
---|---|---|---|
radiogroup |
ul |
Identifies the element as a container for a group of radio buttons. |
|
aria-labelledby="[IDREF]" |
ul |
Refers to the element that contains the label of the radio group. | |
tabindex="0" |
ul |
|
|
aria-activedescendant="[IDREF]" |
ul |
|
|
radio |
li |
|
|
aria-checked="false" |
li |
|
|
aria-checked="true" |
li |
|
Javascript and CSS Source Code
- CSS: radio.css
- Javascript: radio-activedescendant.js
HTML Source Code