当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <del> cite属性用法及代码示例


HTML <del>引用属性用于指定文档或消息的URL,该URL表示删除文本的原因。

用法:

<del cite="URL"> 

属性值:


  • URL:它包含值,即指定引号来源的网址。

可能的值:

  • 绝对网址:它指向另一个网站。
  • 相对网址:它指向网站内的文件。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML <Del>cite Attribute 
    </title> 
    <style> 
        del { 
            color:red; 
        } 
          
        ins { 
            color:green; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
    <h1>  
    GeeksforGeeks  
</h1> 
  
    <h2>  
     HTML <Del>cite Attribute 
</h2> 
  
    <p> 
        GeeksforGeeks is a 
        <del id="GFG" 
             cite="www.GeeksForGeeks.com">  
            mathematical</del> 
        <ins>  
        computer</ins> science portal 
    </p> 
</body> 
  
</html>

输出:

支持的浏览器:下面列出了HTML <del> Cite Attribute支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <del> cite Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。