HTML 标签列表

HTML <del> 标签

HTML <del> 标签用于表示已从文档中删除/移除的文本范围。它用作已删除内容的标记。浏览器通常通过在删除的文本上划一条线来呈现它,尽管这可以使用 CSS 属性进行更改。

注意:要识别已删除的文本和插入的文本,请使用带有 <del> 的 <ins> 标签,这将显示文档中已删除和插入的文本。

句法

<del> Content........</del>

以下是关于 HTML <del> 标签的一些规范

展示排队
开始标签/结束标签开始和结束标签
用法原文

示例 1

<!DOCTYPE html>  
<html>  
<head>  
<title>Del tag</title>  
</head>  
<body>  
<h2>Example of Del Tag</h2>  
<p>It represent the <del> deleted </del> text. </p>  
</body>  
</html>

输出:

HTML 删除标记

示例 2

使用 CSS 和 <ins> 标签

<!DOCTYPE html>  
<html>  
<head>  
<title>Del tag</title>  
<style>  
    del{  
        color: red;  
        background-color: #fde1e5;}  
   ins{  
       color:#16c39a;}  
</style>  
</head>  
<body>  
<h2>Example of Del Tag</h2>  
<p>Rishi came to Rahul's palce to <del>shock </del> <ins> surprise </ins> him</p>  
</body>  
</html>

输出:

HTML 删除标记

属性

属性属性值描述
citeURL它指定资源的 URL,用于解释更改或删除文本的原因。
datetimeYYYY-MM-DDThh:mm:ssTZD它指定删除文本的日期和时间。

全局属性

HTML <del> 标签支持全局属性。

事件属性

HTML <del> 标签支持事件属性。

支持浏览器

元素ChromeIEFirefoxSafariOpera
<del>YesYesYesYesYes


  • 使用社交账号登录,本站支持
全部评论(0)