Skip to content

Files

Latest commit

 

History

History
16 lines (10 loc) · 440 Bytes

a11y-positive-tabindex.md

File metadata and controls

16 lines (10 loc) · 440 Bytes

Pattern: Use of positive tabindex value

Issue: -

Description

Avoid positive tabindex property values. This will move elements out of the expected tab order, creating a confusing experience for keyboard users.

<!-- A11y: avoid tabindex values above zero -->
<div tabindex='1'/>

Further Reading