Latest web development tutorials

HTML ins cite attribute

HTML ins tag Reference Manual HTML <ins> tag

Examples

Section inserted text with a URL pointing to a document, the document explains the reasons for the text to be inserted:

<p>这是一个文本。
<ins cite="why_inserted.htm">这是一段插入文本。</ins></p>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

cite property has no visual effect in an ordinary Web browser, but you can use screen readers.


Definition and Usage

cite attribute specifies a URL to a document, the document explains the reasons for the text to be inserted or modified.


Differences between HTML 4.01 and HTML5

no.


grammar

<ins cite="URL">

Property Value

描述
URL 规定文档的地址,该文档解释了文本被插入或修改的原因。

可能的值:

  • 绝对 URL - 指向另一个网站(比如 cite="http://www.example.com")
  • 相对 URL - 指向网站内的一个页面(比如 cite="example.html")


HTML ins tag Reference Manual HTML <ins> tag