Common accessibility issues that you can fix today

This week, WebAIM published their latest “WebAIM Million” report. It details accessibility issues they found when they tested the web's top million websites automatically. What is some low hanging fruit you could fix today?

For context, WebAIM, a non profit based out of Utah in the US, have done their ‘WebAIM Million’ project since 2019. They post an extensive analysis every year, looking at trends and improvements/decline in web accessibility over time. I find these posts very insightful and use them to inform my own workshops and outreach. It’s definitely recommended reading!

There are some caveats to be added with surveys based on automated accessibility testing. One is that ‘ease of detectability’ does not correlate with ‘impact on end users’. There are issues that are easy to detect and issues that impact end users most, these are not necessarily the same. Automated tests also cover only a small part of all accessibility, as some things aren’t detectable by machines (yet, or ever). I’m not suggesting this makes the survey less useful or good, but wanted to call it out explicitly. The ACT-Rules Community Group at the W3C works on harmonising test rules for things that are testable.

Ok, let’s look at the top issues and how developers, browsers and CMSes can take away barriers today. Some of these include ideas about what users can do (important caveat: none of this should be user responsibility, website owners should not expect users to use or know about these tools).

Low text contrast

There are cases where text colour and the background colour have a ratio lower than the threshold in WCAG (see also MDN on contrast).

Designers can check contrast manually install plugins (using a tool like Contrast Ratio) or install a plugin like Stark for Figma or Sketch.

Developers can use an automated contrast checker to make sure you avoid low contrast text. Run a checker like the one in Firefox Dev Tools Accessibility Panel or axe in CI/CD, or paste two colours into a manual tool like Contrast Ratio.

Designers and developers alike can use Polypane’s contrast checker that suggests accessible alternatives, which makes it a lot easier to not just find the issue, but also fix it while you’re at it.

Users could use a plugin like Fix Contrast to not be affected: it tweaks colours on the fly so that you don’t have to suffer low contrast text.

There are some discussions on new colour contrast algorithms for WCAG, but this is still under discussion and not ready any time soon.

Missing alternative text

When you create content, describe your images. In your CMS, on Twitter and even in GitHub issues: use that alternative text feature, so that users who can’t see the image can access the content in them. On platforms that don’t support alternative text, like Slack or mobile LinkedIn (!), you can describe images in text. If you choose a CMS or content platform, ensure it can handle alternative text or set it up to do so.

In the resulting HTML, you’ll want something like:

<!-- image with text -->
<img src="website-logo.png" alt="hiddedevries.nl" />

<!-- image with redundant content -->
<img src="hidde.png" alt="" /> 
<p>Photo of Hidde</p>

You can make your decisions on alternative text using the Alt Decision Tree, but basically the gist is that if you were to replace your image with a square, what would you write in the square for it to still be useful? Leaving it empty is an option if that’s the most useful alternative for the image. Like in the example above, there is a photo with a paragraph underneath that describes it. In this case, writing “Hidde” or “Photo of Hidde” in the alt attribute is redundant, it would be best to use an empty alt (but do leave the attribute in there, or some browsers will use the image URL as an alternative).

Users can use Microsoft Edge, which fills in missing alternatives. AI aren’t very good at intentions or context, but pretty much perfect at recognising text. Next time a news website posts an image of new covid rules with no alternatives (as the main Dutch news website used to do throughout the pandemic), users of Edge can follow along.

Empty links and buttons

When links, buttons or other interactive elements don’t have names, assistive technologies like screenreaders or voice controls have no way to uniquely refer to them. If it is to be interacted with, it needs a name.

Imagine the difference between a screenreader saying “here's 4 buttons: button, button, button and button”, versus “here's 4 buttons: publish content, delete content, change to draft, upload image”. In the first instance, you'd need to press them before you know what they do, in the second, it is clear what you're in for, with no further context needed.

Names are derived from text content, like the actual text that’s inside a button, or can be added through an attribute. See Naming things to improve accessibility for more detail or the spec that defines how controls get their names.

Developers need to ensure all controls they build (links, buttons, form fields, etc) have names, ideally that make sense out of context:

<!-- names that make sense out of context -->
<button>Submit form</button>
<button>Publish content</button>
<button>Expand filters</button>
<a href="//wikipedia.org">Wikipedia</a>
<a href="//twitter.com">Hidde on Twitter</a>

<!-- names that are confusing -->
<a href="/">click here</a><!-- avoid -->
<a href="/">read more</a><!-- avoid -->

<!-- names that are missing; avoid or add a name -->
<a href="//twitter.com/"><svg/></a><!-- avoid -->
<a href="//linkedin.com"><img src="" alt="" /></a><!-- avoid -->
<button><img/><button><!-- avoid -->

Browsers can sometimes derive names from nearby text, some do this when there is no text to derive a name from. This is not ideal, can lead to wrong and confusing guesses and be bad end user experience. The developer of this control will know best what the thing does and therefore how it should be named.

Missing form labels

Form labels kind of fall under naming things, as they name form elements specifically.

Developers can fix this by ensuring form fields have a <label> element of which the for attribute points to the id of the input/select/textarea , this also makes that clicking label moves the cursor to the input:

<!-- “for” and “id” are same, this connects them -->
<label for="field">Address</label>
<input id="field" />

They can also add an aria-label attribute to the input to name it that way (but be careful, ARIA labels don’t get translated well).

Missing languages

Proper language indication can get you a Pass on two (!) WCAG Success Criteria (3.1.1 and 3.1.2), and you only need to know one attribute for it.

Developers should ensure the <html> element has a lang attribute with the right language:

<!-- marks this document as 'in English -->
<html lang="en">

Sometimes this is forgotten as the <html> element lives in some template you never touch, but it’s not hard to do, so always double check that this attribute exists and is set to the right language.

If there is content on part the page that is in another language, mark that too, again, with a lang attribute on the relevant DOM node. When you pick a plugin for internationalisation, ensure it sets the lang s or makes it easy for you to do so.

CMSes can make sure that lang attributes are set and set correctly. Browsers can guess languages, but they aren’t always good at this, specifically when it comes to distinguishing dialects: they often matter a lot to people, less so to machines.

Wrapping up

These are some tips based on the most common issues that WebAIM Million 2022 identified. Let’s all put in the work to make sure we, our colleagues, our clients and our users avoid these issues. Like, actually. We need WCAG auditors to focus on higher hanging fruit, by fixing the lower hanging stuff for good.

If this is all new to you, hi, thanks for reading! I hope this helps and feel free to get in touch with questions. If you already knew all of this, please keep spreading the word, so that in next year’s survey, we’ll see steady improvements for the web at large.

Want to learn more about fixing low hanging fruit accessibility issues? In response to the same survey, Christian Heilmann blogged about how to fix accessibility issues using your browser

Comments, likes & shares (214)

Nir Horesh, Matthias Andrasch, darkaesthetics, John Turner, Prasanna Venkatesh, Laura Whitehead, Cos, Swetha P, aga naplocha, Núria Peña, muan, jv, Zeeshan 🌌⠕, Sindre Gulseth, Kons Ti, Kẹ́hìndé Adélékè, Saptak S, Claudia 🦁, Віталій Бобров 🇺🇦💗🛡️⚔️, Tom Forrer, blank, Meagan Eller, Patrick Sanwikarja, Baba, Mauricio Palma, Manuel Matuzović, Della 🌱, Noel, Pavel Pomerantsev, Brennan Young, Melissa, Dave Rupert, Nick F, Aurora 📎, Johnny Taylor, Keith Freund, Christoph Dubach, ash, @softandfierce@infosec.exchange 🪩, Konstantin Rouda, WebOverhauls.com, jeffhorton, Roni Laukkarinen, Stephen Bell :computerfairies:, ⛧Satanist⛧, Patrick Sanwikarja, Alena Nikolaeva, jeremyelder, Mike Masey, TongLen, Mhaley, Noah Gentile, 🌸 oscar 🌸, Emma, Gregory, Martín Baldassarre, TonySpegel, Jeffrey D. Stark, Scott de Jonge, Thomas Bassetto, stffndk 👋, Martín Baldassarre, Jeff Knaack, Nic, Florian Geierstanger, Lea Rosema, Vincent Tunru, Elly Loel ✨🌱, Tom Anypuppies, Tyler Sticka and Johnny Taylor liked this

Kẹ́hìndé Adélékè, Matthias Andrasch, Chee Aun 🫰, knut, Henk Boelman 🥑 ✈ #DevSum, Michael Scharnagl, tanvi.css, Ritik, Nik, //.\, Calum Ryan - calumryan.com, Claudia 🦁, A11y Up, George Salib®, Patrick Sanwikarja, Mauricio Palma, Aurora 📎, Nicolas Hoizey, Jeff Bigham, Eric Eggert, Egor Kloos, Joe Lanman, Roni Laukkarinen, Sp3r4z, Julie Moynat, Dams, Myrdin, TongLen, Ornette Coleman, Den Talalá, Björn Berkholz, Jeff Knaack, Michael Wilson, Lea Rosema, Tom Anypuppies, Tom Klaver :prami:, Walter Ebert and Tyler Sticka reposted this

Just read: "Common accessibility issues that you can fix today" hidde.blog/common-a11y-is…
📝 Common accessibility issues that you can fix today 🔗 hidde.blog/common-a11y-is… #html #css #javascript #webdev
Common accessibility issues that you can fix today | hidde.blog hidde.blog/common-a11y-is…
Another good one! Common accessibility issues that you can fix today. #a11y hidde.blog/common-a11y-is…
Hmm, it's just a common a11y issue that you can fix it by NOW, yes NOW hidde.blog/common-a11y-is…
Common accessibility issues that you can fix today: hidde.blog/common-a11y-is… #accessibility #a11y
Common accessibility issues that you can fix today hidde.blog/common-a11y-is… #webdev #a11y
Common accessibility issues that you can fix today, by @hdv hidde.blog/common-a11y-is…
"Common accessibility issues that you can fix today" ... hidde.blog/common-a11y-is…
Common accessibility issues that you can fix today hidde.blog/common-a11y-is… #NAGWGoodies
Appreciate this succinct #accessibility checklist from @hdv with links to plugins for designers. 👏 hidde.blog/common-a11y-is…
#Accessibility Common accessibility issues that you can fix today hidde.blog/common-a11y-is…
Interesting article on findings from a @webaim report on trends and improvements/decline in web accessibility over time. What common accessibility issues can you fix today? hidde.blog/common-a11y-is…
Does your #website follow #accessibility standards? Check out these common accessibility issues that can be fixed right now! @hdv #design hidde.blog/common-a11y-is…
"Common accessibility issues that you can fix today" ➡️ hidde.blog/common-a11y-is… #Accessibility #Frontend #WebDevelopment
"Common accessibility issues that you can fix today” (via @hdv) #a11y Part 1: hidde.blog/common-a11y-is… Part 2: hidde.blog/more-common-a1…
@omgmog lol what a coincidence, I just finished reading both articles! One of the points in the focus paragraph made me realize I have to move my hidden rel="me" links: they are present when pressing Tab, but they don't have focus in the page and it's confusing...
thanks Hidde for sharing!
Want to address accessibility issues on your website? Try these easy-to-implement solutions 👇 hidde.blog/common-a11y-is…
Common accessibility issues that you can fix today hidde.blog/common-a11y-is…
Common accessibility issues that you can fix today hidde.blog/common-a11y-is…
Common accessibility issues that you can fix today hidde.blog/common-a11y-is…
Common accessibility issues that you can fix today: hidde.blog/common-a11y-is… by @hdv #a11y #webdev
Common accessibility issues that you can fix today hidde.blog/common-a11y-is… #webdev #webdesign #accessibility #a11y
Si tu t'en sors bien en anglais, tu as ces ressources : w3.org/WAI/test-evalu… et hidde.blog/common-a11y-is…
Common accessibility issues, and how to solve them (hidde.blog/common-a11y-is… + hidde.blog/more-common-a1…), an overview of simple things we can do today to improve most common accessibility issues right away. By @hdv. #accessibility
Good to see you're working on improving the Lighthouse score, but note that web accessibility is about a lot more (WCAG has 50 success criteria on A/AA, and then there's a lot beyond WCAG). Here's 5 things you can fix: hidde.blog/common-a11y-is… And 5 more: hidde.blog/more-common-a1…
Common accessibility issues that you can fix today | hidde.blog hidde.blog/common-a11y-is…