Massimo Artizzu
Web dev & architect
at Antreem
You can find these slides at
maxart2501.github.io/css-accessibility-talk/css-day/
Do you know
display: contents
?
π€
.wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
}
.purple {
display: contents;
}
It's like display: none
for the element, but not its descendants
But… there's a problem.
Most browsers takes that too literally.
How much does CSS affect accessibility?
π€
There's display: none
, but what else?
π Let's see another example
<button>Add</button>
button {
text-transform: uppercase;
}
So, screen readers just inspect HTML+CSS?
Not really…
<nav>
<ul>
<li><a href="…">Home</a></li>
<li><a href="…">Page</a></li>
<li><a href="…">Site</a></li>
</ul>
</nav>
ul {
display: flex;
list-style: none;
...
}
VoiceOver on Mac
 |
 |
 |
- list
- item count
- link index
|
- list
- item count
- link index
|
Β―\_(γ)_/Β―
|
DOM+CSS
The Accessibility Tree
Many elements are mapped 1-1:
- π
<nav>
β navigation
- π
<header>
β banner
- π
<ul>
, <ol>
β list
- π
<a>
β link
- π …
Others are flattened:
It's <em>really</em> important
paragraph
> text It's
> text really
> text important
And others are expanded:
video
> button Play
> button Mute
> slider
> graphic
π³
βΏοΈ
π π β¨οΈ
Accessibility feedback cycle
A good web developer should take care of the accessibility tree that comes out of the DOM
… but how is the tree generated?
-
π tables used for layouts;
-
π hidden content or…
-
π … placed far away;
-
π …
DevTools to the rescue π¦Ί
Hz
and kHz
are CSS units?
Planned for…
Accessibility isn't just about blindness
It's also in the small things
Is your font-size
big enough?
-
14"
800×600
0.36mm
-
15"
1024×768
0.3mm
-
19"
1440×960
0.29mm
-
4.5"
360×640
0.16mm
-
28"
2560×1440
0.24mm
-
6.5"
1242×2688
0.16mm
- π 2.54mm
- π₯ 1.77mm
- π±1.07mm
readability
>
legibility
normal
≈ 1.2
Do you pay for screen pixels?!
:root {
font-size: 20px;
line-height: 30px;
}
:root {
font-size: 125%;
line-height: 1.5;
}
Speaking of content…
The oldest dev trick
<img src="image.png">
img:not([alt]) {
&:not([role]), &:not([role=presentation]) {
outline: 1px solid red;
}
}
But… have you ever used these images?
<i class="fa fa-home"></i>
.fa-home::before {
content: '\f015';
}
Screen readers do announce generated content
(except for IE)
… but not that!
Or they use the Unicode name if available
-
βοΈ put
aria-hidden="true"
, or
-
βοΈ
aria-label="home"
in the markup
… but this isn't CSS!
.icon-home::before {
content: '\f015'
/ 'home';
}
Alternative text for CSS Generated Content
Meanwhile, in Safari…
.icon-home::before {
content: '\f015';
alt: 'home';
}
brucelawson.co.uk/2014/notes-on-draft-css-alt-property
Just two gotchas π€«
Use with moderation
CSS Generated Content shouldn't usually contain… content!
It can disrupt your build task
CSS isn't the right place for translations
Although…
<i class="icon icon-home" data-meaning="Home"></i>
.icon-home::before {
content: '\f015' / attr(data-meaning);
}
(Too bad this should work, but doesn't…)
(Just use aria-label
, then.)
How do screen readers read a page?
@media screen and (min-width: 1025px) {
#app {
display: grid;
grid-template-columns: 15% auto 20%;
grid-template-area: "head head head"
"nav main side"
"nav main ads";
}
}
<div id="app">
<header>...</header>
<nav>...</nav>
<aside>...</aside>
<aside class="ads">...</aside>
<main>...</main>
<footer>...</footer>
</div>
One more reason to build mobile-first!
Media Queries Level 5
Values: reduce | no-preference
-
β carousels;
-
β parallax effects;
-
β modal animations;
-
β layout transitions…
prefers-reduced-motion
Values: light | dark | no-preference
… also nice for everyone!
Reading an article on medium
prefers-color-scheme
Values: high | low | no-preference
Values: reduce | no-preference
Values: normal | dim | washed
… those media features
Safari 9.1 was released on March 2016
inverted-colors
It's still just a draft
π
About colors…
Are you sure your text has enough
contrast?
contrast?
Contrast ratio for:
- π AA: 3.0
- π AAA: 4.5
But what's this "contrast ratio"?
We have hsl()
Why do we need luminance?
50%
50%
50%
50%
50%
50%
33%
94%
79%
85%
16%
43%
There are other things to consider…
“Large” text?
- βοΈ 14pt and bold, or
- βοΈ 18pt or larger
Toss a coin to your witcher,
o valley of plenty
Toss a coin to your witcher,
o valley of plenty
DevTools can help!
But DevTools have more tricks under their sleeves…
Try to use the emulation on this page
-
π WAVE Evaluation Tool
-
π axe
-
π Tota11y Toolkit
-
π ChromeLens
That's all, folks!
π
@each $question in $questions {
@include answer($question);
}