This <del>
element is used to highlight what is
removed from a document by displaying it with a line drawn though.
<del> |
Yes | Yes | Yes | Yes | Yes |
None.
The <del> tag supports the Global Attributes in HTML.
The <del> tag supports the Event Attributes in HTML.
del { text-decoration: line-through; }
A demo showing how to use <del> tag.
<html>
<body>
<p>
The following text has been <del>deleted</del>.
</p>
</body>
</html>