A11y - Just the hits 💻
Accessibility (A11y) refers to the creation of digital content that can be used by everyone.
The Web is fundamentally designed to work for all people, whatever their hardware, software, language, location, or ability. - W3C
How do you make accessible websites?
- Use specific HTML elements for their intended purpose whenever you can. Use
<div>
and<span>
as last resorts. - Use headings and don’t skip levels.
- Organise your content into regions with elements such as :
<header>
,<main>
,<nav>
,<aside>
,<footer>
, and<section>
. - Have your HTML ordered to match the visible order in the Browser. CSS can move elements anywhere and it will confuse assistive technology!
- Use clear language and avoid things that may be difficult to be read aloud.
- Consider the size of your navigation, the number of links, and the length of the text.
- Have a
<label>
associated with every<input>
and<button>
. Placeholder text does not cut it. - Write useful alternative text for your images and other non-text content. Populate
alt
for images,<caption>
for tables. - Interactive elements are focusable via keyboard by default, do not alter this, and provide it if you are making a custom control.
- Preserve the visibility of the focus indicator. Think it’s ugly, style it up.
- Don’t hide information without giving a visible trigger. You can’t expect everyone to be able to hover to find content.
- Use colour palettes with a high contrast ratio. A constrast ratio of 4.5:1 between text and the background should be your aim.
- Don’t use colour alone to make critical information understandable.
- Clickable areas should be at least 48x48dp (physical size of 9mm).
- Learn about ARIA (in the next post).