HTML <blink> Tag

❮ Previous Reference Next ❯

Deprecated: HTML5 Not Supported

Example

<p>This is <blink>blink</blink> text.</p>

Meaning

The <blink> element causes the enclosed text to flash slowly.

Note: Use CSS this element has been deprecated not supported by any browser.

Warning: Do not use this element as it is obsolete and is bad design practice.


Standard Syntax

<blink>...</blink

Browser Support

Status







Global Attributes

<blink> element also supports the Global Attributes in HTML.


Event Attributes

<blink> element also supports the Event Attributes in HTML.




If you really do need a polyfill, then you can use the following CSS polyfill.

Example

<style type="text/css">
blink {
  animation: 1s linear infinite condemned_blink_effect;
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
</style>
❮ Previous Reference Next ❯