Fix · Serious · cited in audits
How to fix: empty links and image-only links
Screen reader announces "link" with no destination context. Every link needs text content or an aria-label describing its purpose.
- WCAG references
- 2.4.4, 4.1.2
- Severity
- Serious
What it looks like in the wild
Screen reader announces "link" with no destination context.
The screen-reader user, keyboard user, or low-vision user encountering this issue does not get an error message. The page just stops working for them. Which is why this kind of bug rarely shows up in your error tracker; it shows up in support tickets, lawsuits, and abandoned conversions.
Why it fails WCAG
Every link needs text content or an aria-label describing its purpose.
Map this back to 2.4.4, 4.1.2 when you log the bug. Auditors and procurement teams expect that mapping; "broken" is not enough context.
The wrong pattern (avoid)
<a href="/cart"><img src="/cart.svg"></a>The right pattern (copy this)
<a href="/cart" aria-label="View cart with 3 items">
<img src="/cart.svg" alt="">
</a>Notes from real audits
The aria-label completely overrides visible text — make sure the label is complete and descriptive.
Dynamic labels (e.g. "View cart with 3 items") must update when the count changes — use JavaScript to keep aria-label in sync.
If a link wraps both an image and visible text, the visible text alone may be sufficient without aria-label.
Voice control users say the visible text, so aria-label must start with or contain the visible label per WCAG 2.5.3.
Related fixes
How to fix: missing alt text on images
1.1.1
How to fix: low color contrast
1.4.3, 1.4.11
How to fix: form fields without labels
3.3.2, 1.3.1, 4.1.2
How to fix: missing H1 / wrong heading order
2.4.6, 1.3.1
WCAG 2.4.4 — Link Purpose (In Context)
The purpose of every link must be clear from its link text, or from its text combined with
WCAG 4.1.2 — Name, Role, Value
For every UI component, the name, role, and state (and any value where applicable) must be
All fix recipes
Browse fixes by severity
Find every accessibility issue on your site in 60 seconds.
Free public scan. No card. AI-generated fixes for every issue we find.