HTML <th> zkratka Atribut

❮ HTML tag <th>

Příklad

Použití atributu abbr v tabulce HTML:

<table>
  <tr>
    <th abbr="Make">Toy manufacturer</th>
    <th abbr="Model">Vehicle model</th>
  </tr>
  <tr>
    <td>Bruder Toys</td>
    <td>Cross Country Vehicle</td>
  </tr>
  <tr>
    <td>Bruder Toys</td>
    <td>DHL Lorry</td>
  </tr>
</table>

Definice a použití

Atribut abbrurčuje kratší verzi obsahu v buňce záhlaví.

Poznámka: Atribut abbrnemá v běžných webových prohlížečích žádný vizuální efekt, ale mohou jej používat programy pro čtení z obrazovky. 


Podpora prohlížeče

Attribute
abbr Yes Yes Yes Yes Yes

Syntax

<th abbr="text">

Hodnoty atributů

Value Description
text A short description of the header cell content

❮ HTML tag <th>