HTML <abbr>標題屬性用於指定有關元素的額外信息。當鼠標移到元素上時,它將顯示信息。
用法:
<abbr title = "text">
屬性值:此屬性包含單個值文本,該文本用作元素的工具提示文本。該標題與所有HTML元素相關聯。例:
<!DOCTYPE html>
<html>
<head>
<title>abbr tag</title>
<style> e
body {
text-align:center;
}
h1 {
color:green;
}
</style>
</head>
<body>
<center>
<h1>GeeksforGeeks</h1>
<h2>HTML abbr title attribute</h2>
<abbr title="GeeksforGeeks">GFG</abbr>
</center>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML abbr屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML title屬性用法及代碼示例
- HTML title用法及代碼示例
- HTML DOM title用法及代碼示例
- HTML DOM Title用法及代碼示例
- HTML Title text用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML max屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <abbr> title attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。