totn HTML

HTML: <s> tag

This HTML tutorial explains how to use the HTML element called the <s> tag with syntax and examples.

Description

The HTML <s> tag draws a horizontal line through the text (ie: strikethrough). This tag is also commonly referred to as the <s> element.

Syntax

In HTML, the syntax for the <s> tag is:

<body>
<p><s>Strikethrough text goes here</s> but not here</p>
</body>

Sample Output


Attributes

Only the Global Attributes apply to the <s> tag. There are no attributes that are specific to the <s> tag.

Note

  • The HTML <s> element is found within the <body> tag.
  • The <s> tag is used to draw a horizontal line over the text (also called strikethrough).
  • See also the <del> tag and the <strike> tag.

Browser Compatibility

The <s> tag has basic support with the following browsers:

  • Chrome
  • Android
  • Firefox (Gecko)
  • Firefox Mobile (Gecko)
  • Internet Explorer (IE)
  • Edge Mobile
  • Opera
  • Opera Mobile
  • Safari (WebKit)
  • Safari Mobile

Example

We will discuss the <s> tag below, exploring examples of how to use the <s> tag in HTML5, HTML 4.01 Transitional, XHTML 1.0 Transitional, XHTML 1.0 Strict, and XHTML 1.1.