Reading and Focus Order
Reading and Focus Order
| Topic | Technique | WCAG AA Requirement |
|---|---|---|
| Reading Order | Reading Order: The reading order MUST be logical and intuitive.
|
Required WCAG 1.3.2 |
| Focus Order | Focus Order: The navigation order of focusable elements MUST be logical and intuitive.
|
Required WCAG 2.4.3 |
| Tabindex | Positive Values: A tabindex of positive values (e.g. tabindex="1", tabindex="2", etc.) SHOULD NOT be used, because the result is almost always an illogical reading and/or tab order. |
Best Practice |
Zero: Use
|
Best Practice | |
Negative 1: Use tabindex="-1" to allow JavaScript to send the focus to an element, without putting it in the focus order. |
Best Practice |