<ins> marks the text as having been inserted into the document. The text is rendered with an underline. This tag is similar to <u> in the way it renders text.
<ins> |
Yes | Yes | Yes | Yes | Yes |
None.
Attribute | Value | Description |
---|---|---|
cite | URL | Set a URL to a document to explain the reason for inserting |
datetime | YYYY-MM-DDThh:mm:ssTZD | Set the date and time when the text was inserted/changed |
The <ins> tag supports the Global Attributes in HTML.
The <ins> tag supports the Event Attributes in HTML.
ins { text-decoration: underline; }
A demo showing how to use <ins> tag.
<html>
<body>
<p>
<ins>This text has been inserted in the document.</ins>
</p>
</body>
</html>