The CSS "content" property accepts alternative text
- Published at
- Updated at
- Reading time
- 3min
Developers often use before
and after
pseudo-elements (generated content) to style elements. With a few lines of extra CSS, it is possible to include icons, images, or even add text without adjusting the HTML.
Unfortunately, you have to consider using content
in pseudo-elements very carefully because it can affect accessibility. Just because your generated content is not defined in the HTML, it doesn't mean that it is not picked up by assistive technology like screen readers.
Let's have a look at an example:
.new-item::before {
content: "★";
}
The above CSS prepends the ★
symbol (black star) to the inner content of elements with the class new-item
. And this might be all great from a visual perspective, but it has unexpected side effects for screen readers.
<a class="new-item" href="#">go to new things</a>
This link is now presented with a star before the inner text go to new things
. But screen readers will read out "Black star go to new things", too. This experience is not great!
Today I learned that the content
property supports a way to define alternative text for generated content.
.new-item::before {
/* "black star" and element content is read out */
content: "★";
/* "Highlighted item" and element content is read out */
content: "★" / "Highlighted item";
/* Generated content is ignored and only element content is read out */
content: "★" / "";
}
That's pretty cool because you can provide text alternatives for generated content right in CSS! Unfortunately, the overall browser support is not given at the time of writing. Firefox and Safari don't support /
in the content
property.
The rule stays the same: use generated content carefully. Going with a separate element in combination with aria-hidden="true"
continues to be a better approach.
Andrea Giammarchi pointed out that having alternative text in CSS is not a scalable or maintainable solution, and I agree.
The spec defines that it is possible to specify the alternative using an element attribute. Unfortunately, the spec does not define if custom properties should be allowed – I don't see why they shouldn't, though.
.new-item::before {
/* "black star" and element content is read out */
content: "★";
/* Attribute content and element content is read out */
content: "★" / attr(data-star-alt);
/* Custom property and element content is read out */
content: "★" / var(--star-alt);
}
Unfortunately, using attr
didn't seem to work in Chrome with Voiceover.
Zoltan Hawryluk pointed out that you could feature detect the browser support of content: '' / ''
with @supports
and then use the Safari-only alt
property. Unfortunately, the only thing I could find about alt
is this article by Bruce Lawson).
@supports (content: "x" / "y") {
.new-item::before {
content: "★" / "Highlighted Text:";
}
}
@supports not (content: "x" / "y") {
.new-item::before {
content: "★";
alt: "Highlighted Text:";
}
}
Considering feature detection and the alt
property, it boils down to only Firefox not supporting alternative text for generated content. Bummer!
Additional resources
My friend Manuel published an excellent follow-up post that you might want to check out, too – Here’s what I didn’t know about “content”.
And also, Adrian Roseli went deeper into the browser support topic of Alternative Text for Generated Content.
Yes? Cool! You might want to check out Web Weekly for more quick learnings. The last edition went out 23 days ago.