最新的Web開發教程
 

HTML <td> abbr Attribute

<HTML <td>標籤

在使用abbr以HTML表格屬性:

<table>
  <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>
試一試»

定義和用法

<td> abbr屬性不支持HTML5。

abbr屬性指定單元格中的內容的一個較短的版本。


瀏覽器支持

屬性
abbr

abbr屬性具有在普通的網絡瀏覽器沒有視覺效果,但是可以通過屏幕閱讀器使用。


句法

<td abbr="text">

屬性值

描述
text 單元格內容的簡短描述

<HTML <td>標籤