在 HTML 表格中使用 abbr 属性:
运行一下 »<table border="1">
<tr>
<th>Toy manufacturer</th>
<th>Model</th>
</tr>
<tr>
<td>Bruder Toys</td>
<td abbr="vehicle">8970 Cross Country Vehicle</td>
</tr>
<tr>
<td>Bruder Toys</td>
<td abbr="lorry">0567 DHL Lorry</td>
</tr>
</table>
abbr 属性在普通的 Web 浏览器中没有视觉效果,但可以通过屏幕阅读器使用。
HTML5 不支持 <td> abbr 属性。
abbr 属性规定单元格中内容的缩写版本。
<td abbr="text">
值 | 描述 |
---|---|
text | 单元格内容的短描述。 |