HTML <ins>は属性を引用します

❮HTML<ins>タグ

挿入されたテキストと、テキストが挿入された理由を説明するドキュメントへのURL:

<p>This is a text.
<ins cite="why_inserted.htm">This is an inserted text.</ins></p>

定義と使用法

このcite属性は、テキストが挿入/変更された理由を説明するドキュメントへのURLを指定します。


ブラウザのサポート

Attribute
cite Yes Yes Yes Yes Yes

注:このcite属性は、通常のWebブラウザーでは視覚効果はありませんが、スクリーンリーダーで使用できます。


構文

<ins cite="URL">

属性値

Value Description
URL Specifies the address to the document that explains why the text was inserted/changed.

Possible values:

  • An absolute URL - Points to another web site (like cite="http://www.example.com")
  • A relative URL - Points to a page within a web site (like cite="example.html")

❮HTML<ins>タグ