del

<del> 要素は、文書から削除されていることを表します。段落をまたぐ形では使用できません。

カテゴリー
フロー・コンテンツ、フレージング・コンテンツ
配置場所
フレージング・コンテンツが置ける場所。
内容
親要素に入れられる要素
属性
cite="削除についての説明のURL"
削除についての説明がある場合はこの属性にURLを指定します。
datetime="日付・時刻のフォーマット文字列"
削除日時を指定します。コンピュータが読み取り可能な日付・時刻のフォーマット文字列を指定します。
グローバル属性

accesskey, autocapitalize, autofocus, class, contenteditable, data-*, dir, draggable, enterkeyhint, hidden, id, inputmode, is, itemid, itemprop, itemref, itemscope, itemtype, lang, nonce, spellcheck, style, tabindex, title, translate

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>HTML5 › del</title>
</head>
<body>
<h1>HTML5 › del</h1>
<h2>操作手順</h2>
<ul>
<li>緑のボタンを押す</li>
<li><del datetime="2016-10-11">ピンクのレバーを引く</del></li>
<li>赤のボタンを連打する</li>
</ul>
</body>
</html>