當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。