What you need to know about WCAG 2.1

The W3C just released an updated version of the Web Content Accessibility Guidelines a month ago. It’s a pretty massive document with lots of new success criteria and recommendations. Fortunately, you don’t need to read the whole thing to understand what changes you need to make to your websites.

Want to jump right to the new success criteria? Here’s the full list along with tips on how to pass:

What do the different conformance levels (A, AA, AAA) mean?

As seen in the WCAG 2.1 document, there are a large number of recommendations for accessibility. It would be unrealistic to expect site owners to adhere to them all, so each success criterion is given a priority for how important it is to satisfy.

Accessibility is important

Level A criteria are the most important, followed by AA, and then finally AAA criteria. Each level builds on the other, so it is necessary to satisfy all of the Level A requirements first before trying to satisfy AA or AAA requirements. This is because the W3C requires full conformance at each level to be recognized as compliant.

For Level AA conformance, the Web page satisfies all the Level A and Level AA Success Criteria, or a Level AA conforming alternate version is provided.

Each section starts with Level A requirements, and builds up to Level AAA, with each requirement adding onto the previous one. For example, Section 3.3 is on input assistance. 3.3.1 and 3.3.2 are Level A requirements. 3.3.3 builds on 3.3.1, which is Level AA. The highest level, 3.3.5 and 3.3.6, base success around much more involved criteria, and thus achieve a rating of Level AAA.

What conformance levels do I need to pass?

The obvious answer would be to aim for AAA compliance, which is the strictest and most complete standard. The Level AAA standard will create an environment that maximizes your audience reach by providing support for the widest audience of disabled persons.

Practically speaking, aim for Level AA conformance. This is the highest realistic conformance level to achieve. The W3C recommends this level as well:

It is not recommended that Level AAA conformance be required as a general policy for entire sites because it is not possible to satisfy all Level AAA Success Criteria for some content.

One example of Level AAA conformance that cannot be satisfied is WCAG criterion 2.1.3 for keyboard shortcuts. If your application is only available on mobile, such as the Uber app, there is no real keyboard, so it cannot be navigated by keyboard shortcuts, and will not pass this success metric. This, of course, is not a practical requirement because Uber is designed for use on mobile and should not have to try and cater their strategy towards a requirement like this.

Keyboard events

Now that we have an idea of what level we need to aim for, here are the new success criteria in the updated guidelines and how to pass them.

New WCAG success criteria

Level A: The bare minimum

2.1.4 Character Key Shortcuts (source)

What it means

Keyboard shortcuts aren’t just for power users like vim developers. They are also super useful for the blind, who have no reason for using a monitor or mouse. Therefore, it is a good idea to implement some basic keyboard shortcuts to navigate your site without the need for a mouse.

How to pass
  • If you have shortcuts, make sure you can disable them
  • The shortcut can be mapped to a different key than you provided by default
  • The shortcut can only be used on a component on in focus. You can’t accidentally trigger the shortcut if it isn’t actively on the part of the page that should receive that shortcut.

2.5.1 Pointer Gestures (source)

What it means

Things like touch gestures have many ways of interacting. Single point gestures include tapping or clicking. Multipoint gestures include things like pinch-to-zoom. Path-based gestures include things like swiping or sliding. Your application should account for all of these.

touch gestures need fallbacks as well

How to pass

If you use multipoint or path-based gestures, the actions that are triggered by those gestures should have a single point fallback. In other words, if you use the swipe event to mark something as complete, you should also have a touch or click gesture to mark that item complete as well.

2.5.2 Pointer Cancellation (source)

What it means

Actions can be triggered with, for example, a click. Those actions should be reversible.

How to pass
  • Don’t use the down-event (e.g. keydown or mousepress) unless it is essential
  • Show a popup or alert to undo the previous action
  • If you use a down-event, an equivalent up-event should be available to undo that action

2.5.3 Label in Name (source)

What it means

Images can be used inside of a label to describe content. The component housing those images should have a text fallback of that image content.

How to pass

2.5.4 Motion Actuation (source)

What it means

Actions can be triggered by device motion, such as shaking, tilting, or turning orientation. Motion actions should have the option of being disabled.

How to pass
  • Provide a menu item or setting to disable motion events
  • Don’t use motion events unless they are essential to the functionality of the activity
  • Don’t use motion events unless the device is a supported accessibility device with motion in mind (e.g. haptic response for a Braille reader)

Level AA: The gold standard

1.3.4 Orientation (source)

What it means

Content can be viewed in a variety of orientations, such as landscape or portrait.

How to pass
  • Don’t limit your content to be viewed in only 1 orientation

1.3.5 Identify Input Purpose (source)

What it means

You can programmatically explain the purpose of any input element.

How to pass
  • Use available attributes when possible to explain why that input is being used. For example, use the autocomplete attribute on text fields that will take advantage of this functionality.

1.4.10 Reflow (source)

What it means

Software like browsers allow you to zoom in and out of the content they display. This causes content to reflow and change how it is laid out on the screen, similar to media queries in responsive design.

How to pass
  • Use responsive design meta tags to make the content fit your device. If content reflows, it shouldn’t start requiring you to horizontally scroll.
  • If reflows happen, that should not restrict functionality. Again, make sure you use the correct meta tags to prevent content from going off of the screen, particularly buttons, links, or other components that provide functionality to the system.

1.4.11 Non-text Contrast (source)

What it means

Contrast exists in all things, not just text. People should be able to interpret and read buttons, select dropdowns, and other components that are not primarily identified as text.

black and white readers require high contrast

How to pass
  • Use a color contrast checker to identify colors that are greater than a 3:1 ratio of contrast. For example, use a sufficiently contrasting blue background on a button with white text.

1.4.12 Text Spacing (source)

What it means

Text needs to breathe. If it’s too close together, it’s hard to read, especially for those with impaired eyesight.

How to pass
  • line-height > 1.5
  • margin-top/margin-bottom > 2 * font size
  • letter-spacing > .12 * font size
  • word-spacing > .16 * font size

1.4.13 Content on Hover or Focus (source)

What it means

Some consideration is required for content that is only available on hover/focus events, such as popups and tooltips.

How to pass
  • You can dismiss this content without having to lose hover or focus. For example, use the esc key to dismiss something.
  • If something is hoverable, you should be able to pass over that content without losing that content. For example, if you have a tooltip on hover of an acronym like HTML, and you move the mouse onto that tooltip, the tooltip should not disappear because you moved your mouse onto tooltip and off of the acronym.

4.1.3 Status Messages</a> (source)

What it means

A status message is dynamic content like a warning or error. These kinds of messages usually show up at the top of the document and usually break the normal flow of reading the document.

How to pass
  • If you issue a status message, an assistive technology like a screen reader should be able to read this message without having to receive focus. So if you have a blog with a “Read More” button, and the button fails to load the additional content, the status message should be readable by the screen reader without having to use keyboard shortcuts or some maneuver to change where you are in the content flow in order to read what has happened.

Level AAA: Extra credit

1.3.6 Identify Purpose (source)

What it means

Similar to 1.3.5, you can explain the purpose of all tags in a markup language, not just input elements.

How to pass
  • Make liberal use of the ARIA properties
  • Provide keyboard shortcuts
  • Keep pages simple. Prefer more pages that are simpler in focus than fewer pages with lots of functionality.
  • Use symbols and iconography that users are familiar with (e.g. right triangle for playing audio or hamburger for menus)

2.2.6 Timeouts (source)

What it means

When a user loses connectivity to a site, such as poor cellular service, popups show things called timeouts which inform the user that service has been interrupted. People like the elderly sometimes cannot complete these kinds of forms in one sitting and may have to revisit this content multiple times.

How to pass
  • If you use a timeout, inform the user that there is data loss and how long the service will be down for.
  • Store data for 20 hours or longer. For example, if you have a checkout form, it should autosave the progress on the form for at least this long.

2.3.3 Animation from Interactions (source)

What it means

Motion animation can be disabled unless it is essential to the functionality of the component. This is important because high speed or repetitive animations could induce seizures or other physical maladies.

How to pass
  • Animations that are triggered by some kind of interaction can be disabled unless the animation is required for the component’s functionality. Allow animations to be disabled via a setting or shortcut.
  • Don’t use animations that could cause issues for users. Police lights, camera flash, repetitive blinking, you get the idea. These kinds of animations are pretty much never needed for an application to work and are just there to add to the design. Avoid them if you can.

2.5.5 Target Size (source)

What it means

The target size is the interactable area of an input. It should be sufficiently large enough to make it easy to identify and interact with.

How to pass
  • Make the target at least 44x44 pixels. If the primary target cannot be that large, there should be a fallback component (such as a link) that is that large.
  • Don’t worry about links or inline text. Those are exempt from this rule.
  • Don’t worry about elements controlled by the User Agent. If you can’t change the component yourself, this criterion won’t hold it against you.
  • Don’t worry about elements that are designed to be small on purpose. For example, an information icon for a tooltip (often portrayed inline as the letter “i” in a circle) is generally presented in a paragraph and would look weird if it were 44x44 pixels in dimension.

2.5.6 Concurrent Input Mechanisms (source)

What it means

Content can be interacted with in multiple ways. You can type in a text box, click on the textbox, or touch the textbox with your thumb. Don’t assume that users want to interact with those elements in a limited subset of those interactions.

no input should be turned down

How to pass
  • Don’t restrict any kinds of interactions unless they compromise security or the user specifically disabled them. For example, if you have a credit card form, just because you’ve enabled keyboard shortcuts to navigate across input elements doesn’t mean you should simultaneously disable touch events because they’re a slower interaction.

You’ve succeeded!

You should now be well on your way to providing an accessible experience for your users. Obviously, you’ll need to provide support for all of the other requirements from the previous versions of the WCAG, but now you are able to update your compliance to the latest standards.

If this all feels like too much for you, we offer accessibility compliance as a service so you don’t have to worry about upgrading to the latest standards. Or send me a question on Twitter and I’d be happy to help answer anything that was confusing or difficult to fix.


Get the FREE UI crash course

Sign up for our newsletter and receive a free UI crash course to help you build beautiful applications without needing a design background. Just enter your email below and you'll get a download link instantly.

A new version of this app is available. Click here to update.