Home > Article > Web Front-end > How to use html del tag
html The del tag is used to define deleted text in the document. Please use it with the tag to describe updates and corrections in the document. All major browsers support the tag.
#html How to use del tag?
Function: Define deleted text in the document.
Note: Please use it with the tag to describe updates and corrections in the document.
Note: All major browsers support the tag.
html del tag usage example
<html> <body> <p>一打有 <del>二十</del> <ins>十二</ins> 件。</p> <p>大多数浏览器会改写为删除文本和下划线文本。</p> <p>一些老式的浏览器会把删除文本和下划线文本显示为普通文本。</p> </body> </html>
Effect:
The above is the detailed content of How to use html del tag. For more information, please follow other related articles on the PHP Chinese website!