Navigation using the Tab key should be restricted to elements on the page that users can interact with.

Why is this an issue?

The misuse of the tabIndex attribute can lead to several issues:

How to fix it

Simply remove the tabIndex attribute or set it to "-1" to fix the issue.

Code examples

Noncompliant code example

<div tabIndex="0" />

Compliant solution

<div />

Resources

Documentation