Today I Learned - Rocky Kev

TIL add link decoration to help with accessibility

POSTED ON:

TAGS:

I like this post a lot: Designing Better Links For Websites And Emails: A Guideline

One of the WCAG requirements is not to rely on color only when you want to distinguish a button or link from the rest of the text. Painting links in blue or another color doesn’t suffice since it still might not be visible for people with color blindness. The most typical method is underlining links; they can also appear in bold font.

In other words, don't just slap a color on a link. Add more decoration like bold, or underline.

Example:


Related TILs

Tagged:

TIL add link decoration to help with accessibility

One of the WCAG requirements is not to rely on color only when you want to distinguish a button or link from the rest of the text. Painting links in blue or another color doesn’t suffice since it still might not be visible for people with color blindness. The most typical method is underlining links; they can also appear in bold font.

TIL a Accessible way to solve Read More

Screenreaders help sight-impaired visitors have a better experience. The most annoying thing on a news website is to hear this: Read more — link, read more — link, read more — link. There's two ways to solve it.

TIL of the base element

base element adds the domain link to all relative links.