WCAG 3.2.3: Consistent Navigation
Understanding WCAG 3.2.3: Consistent Navigation
WCAG 3.2.3, titled "Consistent Navigation," is a Level AA success criterion under the "Predictable" guideline (Guideline 3.2). This criterion focuses on maintaining a consistent and predictable user experience across a website, particularly concerning its navigation elements. It mandates that any navigation components that are repeated on multiple web pages must appear in the same relative order each time they are presented to the user, unless the user explicitly initiates a change.
The core principle is to avoid disorienting users by altering the layout or order of familiar navigation links from one page to another. This predictability is fundamental for efficient and accessible web interaction.
Why Consistent Navigation Matters for Accessibility
Consistent navigation is more than just a convenience; it’s a critical accessibility requirement that significantly impacts various user groups:
WCAG 3.2.3 Success Criterion and Requirements
The official text for Success Criterion 3.2.3 (Consistent Navigation) states:
3.2.3 Consistent Navigation: Repeated navigation components must appear in the same relative order each time they are presented unless a change is initiated by the user. (Level AA)
Let’s break down the key terms:
Practical Guidelines for Compliance
To ensure your website complies with WCAG 3.2.3, consider the following practical guidelines:
Examples of Correct and Incorrect Implementations
Correct Implementation
In this example, the main navigation consistently maintains the same order of links ("Home," "Products," "Services," "About Us," "Contact") on both the Homepage and the Products page, both visually and in the HTML source.
Homepage (index.html)
Products Page (products.html)
Incorrect Implementation
In this example, the order of the navigation links changes between the Homepage and the Products page. "Products" and "Services" have swapped positions, which violates WCAG 3.2.3.
Homepage (index.html)
Products Page (products.html)
(Notice the change in order for "Products" and "Services")
Another common incorrect implementation involves using CSS to visually reorder elements without changing their DOM order. While visually they might appear consistent, for screen reader users and keyboard navigation, the underlying order would be inconsistent, violating the criterion.
Using CSS to visually reorder (violates DOM order consistency)
Even though the CSS reorders the elements visually, the underlying HTML (DOM) order remains "Home, Services, Products" on both pages. If a screen reader or keyboard user navigates Page B, they will encounter "Home," then "Services," then "Products," even though visually "Products" might appear before "Services." This inconsistency violates WCAG 3.2.3 because the *relative order* for assistive technologies is not the same.
Best Practices and Common Pitfalls
Best Practices
Common Pitfalls
By adhering to WCAG 3.2.3, you contribute to a more predictable, understandable, and ultimately more accessible web experience for all users.
Related posts
- WCAG 5.2.3: Complete processes
- WCAG 5.2.4: Only Accessibility-Supported Ways of Using Technologies
- WCAG 5.2.5: Non-Interference
- WCAG 5.3.1: Required elements of the conformity declaration
- WCAG 5.3.2: Optional Components of a Conformance Claim
Still looking for answers?
Ask our experts using online chat