English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The td abbr attribute specifies a shorter version of the content within the cell. The abbr attribute has no visual effect in ordinary web browsers, but can be used by screen readers.
Use of the abbr attribute in an HTML table:
<table border="1"> <tr> <th>Toy Manufacturer</th> <th>Model</th> </tr> <tr> <td>Bruder Toys </td> <td abbr="Vehicle">8970 SUV</td> </tr> <tr> <td>Bruder Toys </td> <td abbr="Truck">0567 DHL Truck </td> </tr> </table>Test it out ‹/›
IEFirefoxOperaChromeSafari
The abbr attribute has no visual effect in ordinary web browsers, but can be used by screen readers.
HTML5 The <td> abbr attribute is not supported.
The abbr attribute specifies a shortened version of the content within the cell.
<td abbr="text">
Value | Description |
---|---|
text | A brief description of the cell content. |