HTML <th> kısaltılmış Özellik

❮ HTML <th> etiketi

Örnek

Bir HTML tablosunda abbr niteliğinin kullanımı:

<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>

Tanım ve Kullanım

Nitelik abbr, bir başlık hücresindeki içeriğin daha kısa bir versiyonunu belirtir.

Not: Özelliğin abbrsıradan web tarayıcılarında görsel bir etkisi yoktur, ancak ekran okuyucular tarafından kullanılabilir. 


Tarayıcı Desteği

Attribute
abbr Yes Yes Yes Yes Yes

Sözdizimi

<th abbr="text">

Özellik Değerleri

Value Description
text A short description of the header cell content

❮ HTML <th> etiketi