Ensures <blink> Elements Are Not Used

Yotam Flohr
Researcher
Low vision Hearing Mobility
WCAG 2.1 Level A

Written and researched for humans by humans

Yotam Flohr
Researcher
Ritvik Shrivastava
Expertly reviewed by
Comments: 0
Your entire domain
Get detailed instructions on how to resolve every accessibility issue on your website

Web accessibility guidelines state that no blink elements should be present. Flashing text is difficult for some users to read and blinking objects are difficult to activate. 

Why It Matters

Users with limited dexterity, as well as those with visual and cognitive impairments, will find flashing or blinking text and objects difficult to read and engage with, which creates a poor user experience. 

Fixing the Issue

Developers should remove all blinking elements where possible to correct this issue.

An example of a code snippet you should remove from an HTML file:

Code example
<p><blink>Moving Sale Thursday!</blink></p> Copy

An example of a code snippet you should remove from a CSS file:

Code example
h1 { text-decoration: blink; } Copy