Skip to main contentCarbon Design System

Link

Design annotations are needed for specific instances shown below, but for the standard link 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
LinkTest(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.
Test data is either not available or not applicable for this component state.
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

No annotations for keyboard interactions are needed. All links are in the tab order, and activated with standard keys. Where Carbon links are not persistently underlined, they receive an underline on focus.

example of link keyboard interaction

Links are reached by Tab key and activated by Space and Enter keys.

Contrast

Carbon’s link text and visited link text colors meet the minimum contrast requirement of 4.5:1 with its background. Carbon also uses a link color and a visited link color that contrast 3:1 against body text, so that they are distinguishable even without an underline.

a blue link contrasts 4.5:1 against the white background and 3:1 against the black body text

Link text has sufficient contrast with both its background and surrounding body text.

a purple link contrasts 4.5:1 against the white background and 3:1 against the black body text

Visited link text has sufficient contrast with both its background and surrounding body text.

Design recommendations

If your design uses generic link names such as “read more,” consider making them unique. Otherwise, annotate a connection with other text in the design that provides context. This will allow developers to implement in a way that increases accessibility. See the Equal Access Toolkit link text topic.

an annotation, connecting an IBM Cloud heading with a Learn more link, reads "associate link with heading"

Annotate the connection between generic links and text that gives context.

Development considerations

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

  • Associate generic links such as “read more” with other contextual text, using either aria-describedby or aria-labelledby (to concatenate multiple text strings). See the Equal Access Toolkit guidance for more details.
  • See the ARIA authoring practices for more considerations.