If you’re going to do a job, do it properly
Posted 17th February 2023 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.