abbr 属性用于指定内容的较短版本或缩写。它没有描述任何视觉效果,但它被屏幕阅读器使用。
用法:用于<th>和<td>标签。
<th> 标签中的 abbr 属性:
用法:
<th abbr="text">
属性值:
- text:它包含标题单元格内容的简短描述。
范例1:以下代码显示了如何在标题单元格中使用 abbr 属性。
HTML
<!DOCTYPE html>
<html>
<body>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>HTML th abbr attribute</h2>
<table border="1">
<tr>
<th abbr="name of student">NAME</th>
<th abbr="age of student">AGE</th>
<th abbr="branch name">BRANCH</th>
</tr>
<tr>
<td>BITTU</td>
<td>22</td>
<td>CSE</td>
</tr>
<tr>
<td>RAKESH</td>
<td>25</td>
<td>EC</td>
</tr>
</table>
</body>
</html>
输出:
<td> 标签中的缩写属性:
用法:
<td abbr="text">
属性值:
- text:它包含对列单元格内容的简短描述。
范例2:下面的代码展示了如何在列单元格中使用 abbr 属性。
HTML
<!DOCTYPE html>
<html>
<body>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>HTML td abbr attribute</h2>
<table border="1">
<tr>
<th>NAME</th>
<th>AGE</th>
<th>BRANCH</th>
</tr>
<tr>
<td abbr="name of student">BITTU</td>
<td abbr="age of student">22</td>
<td abbr="branch name">CSE</td>
</tr>
<tr>
<td>RAKESH</td>
<td>25</td>
<td>EC</td>
</tr>
</table>
</body>
</html>
输出:
支持的浏览器:HTML abbr 属性支持的浏览器如下所列。
- 谷歌浏览器
- IE浏览器
- Firefox
- Safari
- Opera
相关用法
- HTML <td> abbr属性用法及代码示例
- HTML <abbr> title属性用法及代码示例
- HTML <th> abbr属性用法及代码示例
- HTML <abbr>用法及代码示例
- HTML TableHeader abbr用法及代码示例
- HTML <html> xmlns属性用法及代码示例
- HTML <th> valign属性用法及代码示例
- HTML <col> align属性用法及代码示例
- HTML Class属性用法及代码示例
- HTML style属性用法及代码示例
- HTML oninvalid用法及代码示例
- HTML <select> autocomplete属性用法及代码示例
- HTML <table> bgcolor属性用法及代码示例
- HTML onsubmit用法及代码示例
- HTML onunload用法及代码示例
- HTML Marquee truespeed用法及代码示例
- HTML onkeyup用法及代码示例
- HTML ondrop用法及代码示例
- HTML onpageshow用法及代码示例
- HTML readonly属性用法及代码示例
- HTML onsearch用法及代码示例
- HTML oncopy属性用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML abbr Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。