100 Days of A11y

Day 58: Identifying A11y Issues for Keyboard Users

Published on

Through studying WCAG (Guideline 2.1) and other web accessibility documentation and articles, I know that keyboard navigability and interoperability is important for a wide variety of users. Some important ideas to focus on when creating websites and keeping keyboard accessibility in mind:

The best way to test for keyboard accessibility? Test with a keyboard! It's one of the easiest and cheapest ways to find out if you're blocking someone from accessing your content. Critical (yet basic) keys to use:

If any of those keys fail you when it comes to expected behavior for controls and navigation, it's time to start digging into the code and figuring out what's preventing that expected and conventional behavior.

That being said, I've started looking at section two of the WAS Body of Knowledge to fill in any gaps I have about identifying accessibility issues, starting with interoperability and compatibility issues. I've had a lot of practice checking for keyboard accessibility due to its simplicity, but I leave no stone unturned when it comes to studying for this exam and making sure I'm not missing more gaps in my web accessibility knowledge.

Things I accomplished

Permalink for "Things I accomplished"

What I learned today

Permalink for "What I learned today"

Today I didn't learn much more on top of what I knew already, since I've had a lot of practice checking for keyboard accessibility due to its simplicity. However, I leave no stone unturned when it comes to studying for this exam and making sure I'm not missing more gaps in my web accessibility knowledge. Plus, I'm always eager to take the opportunity to advocate for keyboard testing as a reminder to designers and developers that not everyone uses a mouse and even well-written code can produce a different experience than initially expected.

One thing I did learn:

A common problem for drop-downs used for navigation is that as soon as you arrow down, it automatically selects the first item in the list and goes to a new page. (Keyboard Access and Visual Focus by W3C)

I'll have to watch out for this one I audit other sites, since I have not created a drop down with that type of behavior yet, myself.