Latest web development tutorials

HTML td abbr attribute

HTML td tag Reference Manual HTML <td> tag

Examples

Using 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 Cross Country Vehicle</td>
</tr>
<tr>
<td>Bruder Toys</td>
<td abbr="lorry">0567 DHL Lorry</td>
</tr>
</table>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

abbr attribute no visual effects in an ordinary Web browser, but you can use screen readers.


Definition and Usage

HTML5 does not support the <td> abbr attribute.

abbr attribute specifies an abbreviated version of the cell content.


grammar

<td abbr="text">

Property Value

描述
text 单元格内容的短描述。


HTML td tag Reference Manual HTML <td> tag