HTML <th> 标签的 abbr 属性 详解
HTML基础 2022-06-02 12:08:51小码哥的IT人生shichen
HTML <th> 标签的 abbr 属性
实例
在 HTML 表格中使用 abbr 属性:
<table border="1">
<tr>
<th abbr="Company">Company in USA</th>
<th>Address</th>
</tr>
<tr>
<td>Apple, Inc.</td>
<td>1 Infinite Loop Cupertino, CA 95014</td>
</tr>
<tr>
<td>Google, Inc.</td>
<td>1600 Amphitheatre Parkway Mountain View, CA 94043</td>
</tr>
</table>
完整实例【亲自试一试】:
<html>
<body>
<table border="1">
<tr>
<th abbr="Company">Company in USA</th>
<th>Address</th>
</tr>
<tr>
<td>Apple, Inc.</td>
<td>1 Infinite Loop Cupertino, CA 95014</td>
</tr>
<tr>
<td>Google, Inc.</td>
<td>1600 Amphitheatre Parkway Mountain View, CA 94043</td>
</tr>
</table>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
abbr 属性规定表头单元格中内容的缩写版本。
abbr 属性不会在普通的 web 浏览器中造成任何视觉效果方面的变化。
屏幕阅读器可以利用该属性。
浏览器支持
由于在普通的 web 浏览器中不会造成任何视觉效果方面的变化,因此很难说是否存在对 abbr 属性的支持。
语法
<th abbr="value">
属性值
值 | 描述 |
---|---|
text | 表头单元格的短描述。 |