DEV Community

Cover image for Accessibility Breakdown | Navigating Landmarks
Ashley Smith for Developers @ Asurion

Posted on

Accessibility Breakdown | Navigating Landmarks

Todays mini series of things you can do right now, is on navigating landmark accessibility. Landmarks are often overlooked but are crucial for inclusive browsing. We want everyone to navigate the digital landscape seamlessly. Let's get into it:


Why it Matters:

  • Accessibility Impact: For individuals with disabilities, landmarks offer vital orientation within a webpage, empowering them to navigate independently and access content efficiently.
  • User Experience: Landmarks provide essential cues, guiding users through webpage structures and improving navigation efficiency. Consider landmarks as road signs on a highway. Without them, one would struggle to navigate and reach their destinations efficiently.

Quick Check:

  • Manual Inspection: Scan your web pages for semantic HTML elements such as <header>, <footer>, <nav>, <main>, <aside>, and <section> to identify existing landmarks.

    • Does all content exist inside a landmark? Look for supporting ARIA roles if landmarks aren't there.
    • Avoid duplicate landmarks with the same role in the same context. For example, having two tags on the same page can confuse screen reader users.
    • For pages with dynamic content (e.g., single-page applications), ensure that landmarks are updated dynamically as the content changes. This helps screen readers keep up with the context shifts.
    • You can use browser developer tools like Chrome DevTools to inspect the accessibility tree.
    • You can use also use Web Developer to help point these out.

Image of web developer

Web Developer tools
  • Automated Tools: Utilize accessibility evaluation tools like Lighthouse or Axe or WAVE to validate the presence and proper usage of landmarks automatically. You might see an error like this:

landmark axe error

  • Screen Reader Testing: Test your web pages using a screen reader to ensure that landmarks are conveyed effectively to users who rely on auditory feedback. Can you understand each section of the page?

Quick Fixes:

  • Semantic Markup: Ensure accurate use of semantic HTML elements to define landmarks. Utilize appropriate tags to delineate content sections. For example:

    • <header>: Contains introductory content, such as a website's title and navigation links.
    • <main>: Contains the main content of the webpage.
    • <section>: Groups related content together within the main section.
    • <footer>: Contains footer information, such as copyright details.

Use what works for you.

  • Maintain consistency in landmark usage across different pages of the site. This provides a predictable experience for users.

  • ARIA Landmarks: Supplement semantic HTML with ARIA landmarks for enhanced accessibility. Utilize roles like role="banner", role="navigation", role="main", and role="complementary" to provide additional context.

  • Use aria-label or aria-labelledby attributes to provide descriptive labels for landmarks when necessary

<nav aria-label="Primary Navigation">
  ...
</nav>
Enter fullscreen mode Exit fullscreen mode

Testing:

  • Ensure that focus management practices (e.g., tabindex, focus trapping) do not interfere with landmark navigation.
  • Test landmark functionality across different browsers and devices to ensure consistent behavior

  • Consider conducting user testing sessions with individuals who might use assistive technologies, or someone who isn't familiar with your app to gather feedback on the accessibility of landmarks and implement necessary adjustments that make sense.

By following these quick steps, you can quickly enhance the accessibility of how you utilize landmarks in your application, contributing to a more inclusive online environment for all users. Accessibility is an ongoing journey, so start making a positive impact today!🌟


Helpful Links
Free A11y tools:

A11y Info:

Top comments (0)