The DEL element defines deleted text.
<del>deleted text</del>
This element changes into a block-level element or an inline element by the situation.
When a block-level element is included in the content of this element :
This element is treated as a block-level element.
When a block-level element is not included in the content of this element :
This element is treated as an inline element.
<p>Normal text, <del>Deleted text,</del> Normal text,</p>
Normal text, Deleted text, Normal text,
In the following cases, this DEL element is treated as a block-level element.
<del> <p>Deleted text</p> </del>
Deleted text
In the following cases, this DEL element is treated as an inline element.
<del> <s>Deleted text</s> </del>
<p>I started playing baseball in <del>2000</del> <ins>2001</ins>.</p>
I started playing baseball in 2000 2001.