The short text alternative for the complex image is not appropriate or meaningful.

Link to The short text alternative for the complex image is not appropriate or meaningful. copied to clipboard
Rule ID:
alt-text-short-text-not-meaningful
User Impact:
Serious
WCAG :
1.1.1.c

Rule

Complex images MUST be briefly described using alt text AND MUST have a more complete long description.

The alternative text for informative images MUST be meaningful (accurately conveying the purpose of the image, and the author's intent).

Background

People who are blind cannot see images on a page. In order to give people who cannot see an image access to the information conveyed by the image, it must have a text alternative.

When the image is complex and requires a longer description, the alt text should indicate the purpose of the image, such as the title of a chart, and where to find an extended description of the image. Screen readers can then use the alternative text to convey that information to the screen reader user, who can find the extended description of the image.

Code Examples

Good examples:

Long description available on the page:

<img src="chart.jpg" alt="Sales results by quarter. Extended description is below the chart.">

Long description available by link:

<a href="longdescription.html"><img src="chart.jpg" alt="Sales results by quarter. Follow link to extended description"></a>

Other possible methods:

Long description available in a collapsed region, dialog, etc.

Failure Examples:

Alt text summarizes image, but does not give location of long description:

<img src="chart.jpg" alt="Sales results by quarter. It was a good year!">

Alt text points to long description hidden using CSS:

<img src="chart.jpg" alt="Sales results by quarter. Extended description is below the chart.">
<p class="hidden">The first quarter started slow….</p>

How To Fix

To fix this issue, do ALL of the following:

  • Ensure that the short alternative text for the image gives a short, meaningful description of the main purpose or content of the image.
  • Ensure that the short alternative text refers to the location of the long description.
  • Provide a long description for the complex image in the HTML, a collapsed region, a button to a dialog, or a link to another page.
  • Make the long description also available to sighted users.

Don't do this:

  • Put a long description inside the alt attribute.
  • Only make the long description available to screen reader users, such as by only providing a link in the longdesc attribute.

References