HTML <del> 標示被刪除的文字

<del> 標籤 (tag) 用來標示被刪除 (deletion) 的文字內容,常和 <ins> 一起使用。

<del> 標籤的屬性:

  • cite: 可以指定一個連結 (URL),連結解釋該段文字被刪除的原因
  • datetime: 標註此修改發生的日期和時間

使用範例:

<p><del>This text has been deleted</del>, here is the rest of the paragraph.</p>
<del ><p >This paragraph has been deleted.</p ></del >

顯示結果:

This text has been deleted, here is the rest of the paragraph.