Skip to main contentCarbon Design System

Contained list

Design annotations are needed for specific instances shown below, but for the standard contained list 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
Contained listTest(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

The default contained list is not interactive, but several of its variants include keyboard operation. In all interactive variants, the Tab key is used for navigation and both Space and Enter are used to activate components.

Users tab between any actionable items in the list, regardless of whether each item is clickable or contains an action button (such as ‘delete’). It is possible for multiple tab stops to exist for each list item.

The user tabs to each row of a clickable contained list.

In a clickable contained list, each list item is a tab stop, activated with Enter or Space.

The user tabs to each row of a clickable contained list.

Where a contained list has buttons on each row, the buttons are in the tab order.

The user tabs to the first row of a clickable contained list, and then tabs to an actionable item at the end of the same row.

If a contained list contains both clickable rows and action items, there are multiple tab stops on each row.

Design recommendations

Indicate when the contained list is clickable

There is no persistent visual indicator that the list items in a contained list are clickable. To help developers distinguish them from the default contained list in your designs, annotate if each row in a list is intended to be clickable. There is no need to annotate clickable buttons on each row since these are visually identifiable.

Two contained lists, the first with a pink annotation reading "clickable rows", the second showing a button on each row, with no annotation

Annotate if the rows of a contained list are clickable. Do not annotate if it is only buttons on each row that are actionable.

Development considerations

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

  • The contained list is implemented as a list (usually a <ul>) with each item an <li>, and the list title associated with the list through use of aria-labelledby.
  • Any operable variant, whether a clickable list or a list with action items, is a <button> implemented as a child of the <li>.