Home  >  Article  >  Web Front-end  >  How to use html del tag

How to use html del tag

藏色散人
藏色散人Original
2019-05-26 15:36:304156browse

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.

How to use html del 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:

How to use html del tag

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use html dd tagNext article:How to use html dd tag