Skip to main contentCarbon Design System

Accordion

Design annotations are needed for specific instances shown below, but for the standard accordion component, Carbon already incorporates accessibility.

Accessibility testing status

For every latest release, Carbon runs tests on all components to meet the accessibility requirements. These different statuses report the work that Carbon has done in the back end. These tests appear only when the components are stable.

Latest version: ^1.51.0 | Framework: React (@carbon/react)

ComponentAccessibility testStatusLink to source code
AccordionTest(s) that ensure the initial render state of a component is accessible.
Passes all automated tests with no reported accessibility violations.
GitHub link
Tests that ensure additional states of the component are accessible. This could be interactive states of a component or its multiple variants.
Passes all automated tests with no reported accessibility violations.
Tests that ensure focus is properly managed, and all interactive functions of a component have a proper keyboard-accessible equivalent.
Passes all automated tests with no reported accessibility violations.
This manual testing ensures that the visual information on the screen is properly conveyed and read correctly by screen readers such as JAWS, VoiceOver, and NVDA.
A human has manually tested this component, e.g. screen reader testing.

What Carbon provides

Carbon bakes keyboard operation into its components, improving the experience of blind users and others who operate via the keyboard. Carbon incorporates many other accessibility considerations, some of which are described below.

Keyboard interactions

Each accordion is a tab stop. Space or Enter keys expand or collapse accordions, which are collapsed by default. Interactive elements within expanded accordions integrate into the tab order automatically.

example of accordion keyboard interaction

Accordions and interactive elements in the expanded content are in the tab order and keyboard operable.

Labeling and states

The collapsed or expanded state of the accordions is programmatically set by default, eliminating the need for designers to provide text equivalents for the chevron icons.

expanded and collapsed accordions

Carbon handles the accessibility of the chevron indicators.

Design recommendations

Design annotations are needed for the following instances.

Headings

Carbon accordions are not set as headings by default. For improved accessibility, annotate accordions as headings on the first occurrence in a product. Annotate the heading level of accordions as needed. See Indicate heading levels.

H1 and H2 annotations for headings, plus direction to ‘include accordion titles as headings'

If accordion titles act as headings, annotate for development.

Alignment

Carbon chevrons are right-aligned by default, but left-aligned chevrons are more accessible for users with low vision, as the expanded/collapsed indicator is closer to the accordion title.

annotation stating ‘position chevrons on the left of accordion titles'

Annotate if the accordion chevrons should be left-aligned.

Development considerations

Keep these considerations in mind if you are modifying Carbon or creating a custom component:

  • The accordion header has a role of <button>, with an aria-expanded attribute set to "true" or "false".
  • The button has an aria-controls property set to the unique id of the panel it controls.
  • Since accordions are typically grouped together, Carbon puts each button inside a list item in an unordered list, which provides additional context to screen reader users; where only one accordion is used, it should not be put in a list.
  • When accordion titles are used as headings, the buttons are also wrapped in an element with an appropriate heading level; ARIA can be used to set both the heading role and the level (via aria-level).
  • See the ARIA authoring practices for more guidance.