Links do not have a discernible name
— Updated
Appears in: Accessibility audits
Link text that is discernible, unique, and focusable improves the navigation experience for users of screen readers and other assistive technologies.
How this Lighthouse audit fails #
Lighthouse flags links that don't have discernible names:
How to add accessible names to links #
Similar to buttons, links primarily get their accessible name from their text content. Avoid filler words like "Here" or "Read more"; instead, put the most meaningful text into the link itself:
Check out <a href="…">our guide to creating accessible web pages</a>.
</html>
Learn more in Label buttons and links.
Resources #
- Source code for Links do not have a discernible name audit
- Links must have discernible text (Deque University)
Last updated: — Improve article