Start scanning free

( Operable / WCAG 2.1.1 )

Focus skipped an interactive element

This check maps to Keyboard. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Serious Level A WCAG 2.1.1 — Keyboard

What’s wrong

A visible interactive element cannot be reached using the keyboard Tab key.

Why it matters

Keyboard-only users and screen reader users cannot activate elements they cannot focus. This makes features completely inaccessible.

How to fix it

Check for tabindex="-1" applied incorrectly. Ensure the element is not hidden with display:none or visibility:hidden. Interactive elements must be in the tab order.

Before
<button tabindex="-1">Submit</button>
After
<button>Submit</button>

Learn more