English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Reference Manual

HTML Tag Reference

HTML td abbr attribute

The td abbr attribute specifies a shorter version of the content within the cell. The abbr attribute has no visual effect in standard web browsers, but can be used by screen readers.

 HTML <td> tag

Online Example

Use 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 See ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

The abbr attribute has no visual effect in standard web browsers, but can be used by screen readers.

Definition and Usage

HTML5 The <td> abbr attribute is not supported.

The abbr attribute specifies a shortened version of the content within the cell.

Syntax

<td abbr="text">

Attribute Value

ValueDescription
textA brief description of the cell content.
 HTML <td> tag