HTML <th> 약어 속성

❮ HTML <th> 태그

예시

HTML 테이블에서 abbr 속성 사용:

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

정의 및 사용

속성 은 abbr헤더 셀에 있는 내용의 더 짧은 버전을 지정합니다.

참고: 속성 abbr은 일반 웹 브라우저에서 시각적 효과가 없지만 화면 판독기에서는 사용할 수 있습니다. 


브라우저 지원

Attribute
abbr Yes Yes Yes Yes Yes

통사론

<th abbr="text">

속성 값

Value Description
text A short description of the header cell content

❮ HTML <th> 태그