HTML <ins> 標示新插入的文字
<ins> 標籤 (tag) 用來標示一段被編輯插入 (insertion) 的新文字,常和 <del> 一起使用。
<ins> 標籤的屬性:
cite
: 可以指定一個連結 (URL),連結解釋該段文字被插入或修改的原因datetime
: 標註此修改發生的日期和時間
使用範例:
<p>“You're late!”</p>
<del>
<p>“I apologize for the delay.”</p>
</del>
<ins cite="../howtobeawizard.html" datetime="2018-05">
<p>“A wizard is never late …”</p>
</ins>
顯示結果:
“You're late!”
“I apologize for the delay.”
“A wizard is never late …”