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


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