CSS Portal

HTML <ins> Tag

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!

Description

The <ins> HTML element represents text that has been inserted into a document. It is typically used in contexts where content changes need to be highlighted, such as document revisions, corrections, or updates. By marking text as inserted, <ins> provides both a semantic meaning and a visual cue to readers that the content was added after the original creation of the document.

The inserted text is usually rendered by default with an underline, helping users distinguish it from the surrounding content. This default styling can be customized with CSS to suit the design of a webpage.

The <ins> tag is often paired with its counterpart, the <del> tag, which represents text that has been deleted or removed. Together, these tags provide a clear method for tracking changes in a document, similar to the “track changes” feature in word processors.

Typical Use Cases

  • Document Revisions: Showing additions made to a legal document, article, or report.
  • Content Updates: Highlighting new information on a page that is frequently updated.
  • Collaboration: Indicating changes made by different authors or editors.

Example Usage

<p>The conference will be held on 
  <ins>September 10th</ins> at the main auditorium.</p>

In this example, the date “September 10th” is highlighted as newly added information, making it clear to readers that this part of the content was inserted after the initial version.

Properties

Permitted Parents
Any element that accepts phrasing content
Content
Any block, inline and text (but cannot contain block content when used as an inline element)
Start/End Tags
Start tag: required, End tag: required

Example

<p>My favorite color is <del>blue</del> 
<ins>green</ins>!</p>

Attributes

cite
Indicates a source that should indicate the reason for the change.
datetime
Date and time of change.

Global Attributes

The <ins> tag also supports the Global Attributes in HTML5

Event Attributes

The <ins> tag also supports the Event Attributes in HTML5

Browser Support

The following information will show you the current browser support for the HTML <ins> tag. Hover over a browser icon to see the version that first introduced support for this HTML tag.

This tag is supported by all modern browsers.
Desktop
Chrome
Edge
Firefox
Opera
Safari
Tablets & Mobile
Chrome Android
Firefox Android
Opera Android
Safari iOS
Samsung Internet
Android WebView
-

Last updated by CSSPortal on: 26th December 2025

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!