HTML <ins> 标签


示例

包含已删除部分和新插入部分的文本:

<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>
亲自试一试 »

定义和用法

这个<ins>标签定义已插入到文档中的文本。浏览器通常会给插入的文本添加下划线。

提示:另请参阅<删除>标签来标记已删除的文本。


浏览器支持

Element
<ins> Yes Yes Yes Yes Yes

属性

Attribute Value Description
cite URL Specifies a URL to a document that explains the reason why the text was inserted/changed
datetime YYYY-MM-DDThh:mm:ssTZD Specifies the date and time when the text was inserted/changed

全局属性

<ins> 标签还支持HTML 中的全局属性


事件属性

这个<ins>标签还支持HTML 中的事件属性



更多示例

示例

使用 CSS 设置 <del> 和 <ins> 的样式:

<html>
<head>
<style>
del {background-color: tomato;}
ins {background-color: yellow;}
</style>
</head>
<body>

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

</body>
</html>
亲自试一试 »

相关页面

HTML DOM 参考:插入对象


默认 CSS 设置

大多数浏览器都会显示<ins>具有以下默认值的元素:

示例

ins {
  text-decoration: underline;
}
亲自试一试 »