kb/data/developer.mozilla.org/en-US/docs/Glossary/blink_element-0.md

13 KiB

title chunk source category tags date_saved instance
blink element (<blink> tag) - Glossary | MDN 1/3 https://developer.mozilla.org/en-US/docs/Glossary/blink_element reference web, html, css, javascript, documentation 2026-05-05T05:50:03.738561+00:00 kb-cron

MDN HTML HTML: Markup language

HTML reference

HTML guides

Markup languages

CSS CSS: Styling language

CSS reference

CSS guides

Layout cookbook

JavaScriptJS JavaScript: Scripting language

JS reference

JS guides

Web APIs Web APIs: Programming interfaces

Web API reference

Web API guides

All All web technology

Technologies

Topics

Learn Learn web development

Frontend developer course

Learn HTML

Learn CSS

Learn JavaScript

Tools Discover our tools

About Get to know MDN better

Blog

  1. Glossary
  2. blink element ( tag)

blink element ( tag)

The <blink>element (blink tag) is an obsolete HTML feature no longer supported by web browsers and no longer documented on MDN. It was used to make text content blink on and off (flash) continually. The <blink> element was used like this:

In this article

In the early days of the web (the early- to mid-90s), there were not many features available for styling web pages. The CSS specification (version 1) was first released in 1996 and not adopted consistently by browsers until much later. Before CSS, browsers experimented with several features to make particular text sections stand out and grab the user's attention. The <blink> element was one of these, introduced in early versions of Netscape Navigator; Internet Explorer's <marquee> element was another. The <blink> element was apparently created after a conversation in a bar in Mountain View between Netscape engineer Lou Montulli and colleagues. When he went into the office the next morning, he found that one of his fellow engineers had stayed up all night and implemented it (read the story here). While initially popular, <blink> became much maligned because of overuse; many people found it annoying. More importantly, it degrades readability and can be particularly problematic for users with visual impairments or cognitive disorders such as epilepsy or ADHD. It can be disorienting or, in the worst cases, even trigger seizures. <blink> was never properly specified and never achieved significant cross-browser support. It can be considered a piece of web history.

  • The CSS text-decoration-line property has a blink value that should have the same effect, but most modern browsers ignore it.
  • The JavaScript String.blink() method wraps a text string in <blink></blink> tags but, as discussed earlier, this element is no longer supported anywhere.
  • CSS animations could still be used to create blinking text. However, you should avoid blinking text on web pages for the reasons discussed above.