HTML <s> Tag
Description:
The HTML <s> tag is used for rendering a strike (or line) through the middle of the text.
This tag is deprecated in HTML 4.01, use the <del> tag instead.
Specific Attributes:
None
Other Attributes:
| Attribute | Definition |
| dir |
Specifies the text direction for the content in
an element.
|
| class | Specifies a classname for an element. |
| id | Specifies a unique id for an element. |
| lang | Specifies a language code for the content in an element. |
| title | Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip"). |
| style | Specifies an inline style for an element. |
Example Code:
This tag will put a <s>line
through</s> the middle
of the text
Result
This tag will put a line through the middle
of the text