HTML strike Tag

HTML <strike>Tag: The HTML<strike> tag specifies strike through text. This HTML strike tag isn’t supported by HTML5. And this tag create a cut line in the text. Now <del> tag is used instead of this tag.

HTML <strike>Tag

Syntax: <strike> Text</strike>

Browser compatibility

The HTML<strike> tag is supported by different types of browsers.

  • Chrome
  • Firefox
  • Opera
  • Safari
  • Internet Explorer

Example:

<!DOCTYPE html>
<html>
<body>
<p>Version 2.0 is <strike>not yet available!</strike> now available!</p>
</body>
</html>

Output:

Version 2.0 is not yet available! now available!