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
相關用法
- HTML <ins> cite屬性用法及代碼示例
- HTML cite屬性用法及代碼示例
- HTML <q> cite屬性用法及代碼示例
- HTML <blockquote> cite屬性用法及代碼示例
- HTML cite用法及代碼示例
- HTML del cite用法及代碼示例
- HTML DOM Cite用法及代碼示例
- HTML ins cite用法及代碼示例
- HTML blockquote cite用法及代碼示例
- HTML Quote cite用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML min屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <del> cite Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。