Accessibility Wiki

Image-map areas must have alternative text

Rule area-alt · Images & non-text content · impact serious · Static + live

↩ Back to the rules index · WCAG cross-reference

Why it matters

Each clickable in an image map is a link. Without alt text its destination is unannounced.

How to fix

Add an alt attribute describing the link target on every that has an href.

Example

✕ Fails
<map name="m"><area shape="rect" coords="0,0,50,50" href="/home"></map>
✓ Passes
<map name="m"><area shape="rect" coords="0,0,50,50" href="/home" alt="Home"></map>

WCAG success criteria

1.1.1 Non-text Content — Level A

All non-text content (images, icons, controls) needs a text alternative that conveys the same purpose, or be marked decorative so assistive tech can ignore it.

Understanding 1.1.1

The purpose of each link should be clear from its text (or its programmatically-associated context).

Understanding 2.4.4

Standards

This rule contributes to the following standards:

WCAG A EN 301 549 Section 508 Trusted Tester ACT

Standard Criteria
Section 508 1194.22(a)
EN 301 549 9.1.1.1, 9.2.4.4
Trusted Tester v5 6.a
ACT (WCAG SC) 1.1.1, 2.4.4

References