Skip Navigation

Web Accessibility Guidelines 2022 Update

This is an extended version of my previous post, which was slightly outdated.

Charlie in the Chocolate Factory meme: So you want to make your website accessible? Tell me again how many times you've used a screen reader

So you want to make your website accessible, or "a11y"? (accessible and a11y are the same thing).

Good for you!

Ideally, applying a11y guidelines should be a part of the development process, rather than an afterthought. I'm going to go over some steps you can follow to make your site a11y.

But first... If you are not familiar with the concept of accessibility, you should at least read a basic intro.

Okay, we're good? We're good. Let's continue.

Steps to perform an a11y audit

Automatic testing

There are a handful of these types of tools. All of them run an audit check and provide a list of things to change. Some of these tools are described here in more detail: https://a11y.coffee/start-testing

  • WAVE Web Accessibility Evaluation Tool: in my opinion it is the tool that gives a quickest and most visual overview. I’d start here. It shows landmarks, a11y features, and a11y errors, among other things.

  • Additional tools that provide similar information:

    • Firefox a11y audit in Firefox developer tools (also recommended)

      • In a11y dev tools tab, select: “All issues”, and “show tabbing order”. You can also simulate color deficiency.

    • Axe Chrome extension

    • Chrome's lighthouse audit in chrome developer tools

    • Accessibility insights

    • Axe cli. Yes! You can run a11y tests from the command line like so: axe luis-martinez.net/blog/a11y

My recommendation is to use the WAVE Web Accessibility Evaluation Tool to get a quick, visual idea of the a11y issues in the page, and then fix them.

A11y checklist

Use an a11y checklist to discover issues that automated tools might have overlooked: https://www.a11yproject.com/checklist, https://webaim.org/standards/wcag/checklist or https://www.wuhcag.com/wcag-checklist/

Go through one of the checklists and make sure your website passes every item.

Manual testing

Lastly, cross-check the following use cases:

  • Interactive elements should follow ARIA guidelines. Explore the list of WAI ARIA patterns and make sure the ones you use in your page follow these guidelines

  • Add a "skip to content link", if suitable. Suggested read: https://webaim.org/techniques/skipnav

  • Navigate each page with the keyboard. Tab through the site and make sure every interactive element is focusable and has a distinct focus state. Suggested reads: https://web.dev/how-to-review/#start-with-the-keyboard, https://webaim.org/techniques/keyboard/

  • Each page should be screen reader navigable (see screen readers section)

  • If you are building custom widgets, make sure they are a11y (see Custom widgets section)

  • Touch points (interactive elements on mobile devices) should have appropriate dimensions on touch device sizes: at minimum 48x48 pt for touchable areas, and 32 pt of space in between touchable elements.

  • View the site in both grayscale and high contrast and make sure it is readable. I recommend the High Contrast chrome extension, which will enable you to select a handful of color modes. On Firefox, you can use the accessibility tab in the dev tools. Otherwise, google "website grayscale + your browser" and see what you find.

  • View the site at 200% magnification and make sure everything still works. For this, simply use the native zoom of the browser, usually ctrl/cmd and the + key.

About screen readers

A screen reader is a software that reads the content of the screen for users that, for example, are visually impaired. Become familiar with at least one screen reader.

Depending on the operative system, there are different screen readers available:

  • Windows users have NVDA

  • Mac uses have VoiceOver

  • Ubuntu users have Orca

  • For chrome, there is the Screen Reader extension, which is like a lite version of the above. If you use this extension, you can listen to the screen reader announce the interactive elements by tabbing. If you want the screen reader to read non focusable content, you will have to select it by clicking with your mouse.

If for some reason you can't use a screen reader, you still have the accessibility tree view: it is what screen readers read when navigating a site. You can see it in the Chrome dev tools, by clicking on the button with an icon of a person, in the Elements tab.

Accessibility tree in Google Chrome dev tools

In Firefox, the a11y tree is displayed in the "accessibility" tab of the dev tools.

I won't go into how screen readers work. Get familiar with one of them, and use it to test your page for a11y.

To give you an idea, the screen reader reads:

  • The role or type of the element. For example, a link, an article...

  • The accessible name of the element. For a link, it would normally be its text content

  • The element's value, if there is any. For example, the current value in a text input

  • The element's state, if there is any. For example, the checked state in a checkbox

Things to keep in mind:

  • Screen reader users usually navigate a page using headings and landmarks, so review those. Use the h1-h6 hierarchy and landmarks correctly. Use accessible landmarks as a reference.

  • All images should have a descriptive alt text, which describes the image to someone who cannot see it. However, if they are only decorational, leave it empty: alt="".

  • All controls should have a label.

  • All custom controls should have a role and any required ARIA attributes.

  • As screen reader users navigate forms control to control, place any instructions inside the label of the associated control form.

  • The keyboard navigation order should make sense.

  • All visible content of the page should be accessible to screen readers (except anything that is only visually aesthetic).

  • Handle content depending on its required visibility:

    • If content is hidden both from screen readers and visually, use display: none or visibility: hidden.

    • If content is visually present, but hidden from screen readers, use aria-hidden="true" and possibly tabindex="-1", to prevent keyboard focus.

    • If content is visually hidden, but accessible to screen readers, use css similar to this (copied from tailwind docs):

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

Custom widgets

Semantic html (article, main, h1, input, button, etc. as opposed to div and span) has by and large built-in accessibility, so try to use native html as much as possible. However, if you're building a custom widget without semantic html, you might need to take care of accessibility entirely on your own. Research online how to make the widget a11y, according to the W3C specification and using the appropriate ARIA attributes.

Automated tools might not detect your custom widget, so you are entirely on your own.

Things that you will need to consider:

Finding a similar widget in WAI ARIA patterns and using it as reference might be a good start. Then follow the checklists and manual steps described in this post.

A11y libraries

If you have a site built on just html and css, the library cypress-axe lets you run a11y checks in cypress tests. Take a look at this repo to play with it yourself: https://github.com/luismartinezs/axe-a11y-html

If you use a frontend library, such as React or Vue, you can incorporate a11y libraries in your development process. For example, for React you can run automated a11y tests in cypress, or identify a11y issues with Storybook. Check out this repo to see it all working together with React: https://github.com/luismartinezs/react-a11y-axe

What next?

There is much more to a11y than this post can encapsulate. You might start by reading about all html elements, to see what is actually possible in terms of native html. Then, take a look at all ARIA attributes as well as all ARIA roles.

Check also the list of resources at the bottom, in particular:

Resources

Recommended readings

Other resources

Tools and extensions

Screen readers

Checklists

Courses