Skip to main content

If you’re going to do a job, do it properly

Posted in Accessibility

Making your work accessible to all is doing the job properly.

All too often I hear the phrase “forward fix” used when referring to accessibility. It sounds fancy, but what it really means is “We’ll come back to the accessibility bit later”.

The problem here is that:

  • later could take months or even years to come around
  • it sets a dangerous cultural precedent
  • the feature may need fundamental rework, not just just an addition of a few lines of code to add accessibility

Imagine a world where websites and applications were built buy keyboard users for keyboard users. Since the designers and developers don’t use a mouse, they do what Manuel Matzo did in his tongue-in-cheek article Building the most inaccessible site possible with a perfect Lighthouse score and use CSS to hide the mouse cursor with:

*,
*:hover
{
cursor: none;
}

They also stop accidental mouse clicks with:

body {
pointer-events: none;
}

Sounds ridiculous, doesn’t it… That’s what we do when we defer accessibility as a forward fix.

Designing and building without considering accessibility is a job part-done and, by that reasoning, there are way too many half made websites and apps out there.

Accessibility in your inbox

I send an accessibility-centric newsletter on the last day of every month, containing:

  • A roundup of the articles I’ve posted
  • A hot pick from my archives
  • Some interesting posts from around the web

I don’t collect any data on when, where or if people open the emails I send them. Your email will only be used to send you newsletters and will never be passed on. You can unsubscribe at any time.

More posts

Here are a couple more posts for you to enjoy. If that’s not enough, have a look at the full list.

  1. Images as the first thing in a button or link

    If the text of an interactive element like a button or link is preceded with an accessible image, we’ve probably got an accessibility problem.

  2. Alt text for CSS generated content

    There’s an interesting feature in Safari 17.4 that allows content added with CSS to have ‘alt’ text. I’m not sure how I feel about this.