HTML - Strikethrough text
The strikethrough text can be produced using the <del> tag.
<p>This text is <del>cut</del>by a line !</p> |
|---|
Display
This text is |
|---|
Striketrough - Applications
This tag has not got very many applications, but we will try to exemplify its use by the following example: a shopping list
<ol> <li>Un IPhone</li> <li><del>Cheese</del></li> <li><del>Milk</del></li> </ol> |
|---|
Display
|
|---|
We hope these info has been useful to you!
