本文概述
HTML <del>标记用于表示已从文档中删除/删除的文本范围。它用作已删除内容的标记。浏览器通常通过在已删除的文本上打一行来呈现它, 尽管可以使用CSS属性更改它。
注意:要标识已删除的文本和插入的文本, 请使用带有<del>的<ins>标记, 该标记将在文档中显示已删除和插入的文本。
句法
<del> Content........</del>
以下是有关HTML <del>标记的一些规范
Display | Inline |
开始日期/结束日期 | 开始和结束标签 |
Usage | Textual |
例子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>
立即测试
输出:
例子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>
立即测试
输出:
属性
属性 | 值 | 描述 |
---|---|---|
cite | URL | 它指定资源的URL, 该URL解释更改或删除文本的原因。 |
datetime | YYYY-MM-DDThh:mm:ssTZD | 它指定删除文本的日期和时间。 |
全局属性
HTML <del>标记支持Global属性。
事件属性
HTML <del>标记支持事件属性。
支持的浏览器
Element | Chrome | IE | Firefox | Opera | Safari |
<del> | Yes | Yes | Yes | Yes | Yes |