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


HTML cite属性用法及代码示例


HTML cite属性用于指定文档的URL,该URL解释引号,消息或描述插入文本原因的文本。

该属性可以与以下元素一起使用:

下面的示例说明了HTML中的cite属性:

例:

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

支持的浏览器:下面列出了HTML cite属性支持的浏览器:

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




相关用法


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