Skip to main content
Version: v6

Link element is not keyboard operable

Link element is not keyboard operable — rule summary
FieldValue
Rule codeManual_LinkKeyboard_Inoperable
WCAG conformance levelA
WCAG success criterion2.1.1 Keyboard
Must be fixed at sourceNo

Description

A link element on the page has been detected that is not operable via the keyboard. This creates accessibility barriers for users who rely on keyboard navigation, as they may be unable to activate the link using standard keyboard controls, thus hindering their ability to interact with the content.

How to fix

Ensure the link is properly implemented with an <a> element that is focusable and can be activated using keyboard controls. For example: <a href="destination.html">Visit Page</a> or if using a non-navigational link, include a tabindex="0" for keyboard focus and an appropriate event handler.