Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <s> Tag


Example

Mark up text that is no longer correct:

<p><s>My car is blue.</s></p>
<p>My new car is silver.</p>
Try it Yourself »

Definition and Usage

The <s> tag specifies text that is no longer correct, accurate or relevant.

The <s> tag should not be used to define replaced or deleted text, use the <del> tag to define replaced or deleted text.


Browser Support

Element
<s> Yes Yes Yes Yes Yes

Global Attributes

The <s> tag also supports the Global Attributes in HTML.


Event Attributes

The <s> tag also supports the Event Attributes in HTML.


Related Pages

HTML tutorial: HTML Text Formatting

HTML DOM reference: S Object


Default CSS Settings

Most browsers will display the <s> element with the following default values:

Example

s {
  text-decoration: line-through;
}
Try it Yourself »