현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
HTML Abbreviation 요소 (<abbr>) 는 약어를 나타내며 선택적으로 약어에 대한 전체 설명을 제공합니다. 만약 title 속성이 존재한다면 전체 설명만을 포함해야합니다.
<p>I do <abbr title="Hypertext Markup Language">HTML</abbr></p>
See more in depth examples in the How to mark abbreviations and make them understandable article.
DOM 인터페이스 | HTMLElement |
---|---|
컨텐트 카테고리 | 플로우 컨텐츠, phrasing content, palpable content |
허용된 컨텐트 | Phrasing content |
허용된 부모 요소들 | phrasing content를 허용하는 모든 요소들 |
속성
이 요소는 오직 전역 속성만을 포함할수 있습니다.
title
속성을 통해 약어의 전체 설명을 정의 할수 있습니다. 많은 유저-에이전트들은 이것을 툴팁으로 나타냅니다.
각주: In languages with grammatical number (especially languages with more than two numbers, like Arabic), use the same grammatical number in your title
attribute as inside your <abbr>
element.
명세
정의 | 상태 | 비고 |
---|---|---|
WHATWG HTML Living Standard The definition of '<abbr>' in that specification. |
Living Standard | |
HTML5 The definition of '<abbr>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<abbr>' in that specification. |
Recommendation |
브라우저 호환성
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 2.0 | 1.0 (1.7 or earlier) | 7.0 | 1.3 | (Yes) |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Gecko 각주
Gecko 1.9.2 (Firefox 3.6) 까지는, Firefox는 HTMLElement
인터페이스 대신에HTMLSpanElement
인터페이스를 구현했습니다
기본 스타일
The purpose of this element is purely for the convenience of the author and all browsers display it inline (display
: inline
) by default, though its default styling varies from one browser to another:
- 인터넷 익스플로러같은 몇몇 브라우저들은, 바로 스타일을 적용시키는 것보다
<span>
요소를 사용하세요. - 오페라, 파이어폭스 등에는 이 요소에 점선으로 된 밑줄을 넣습니다.
- 어떤 브라우저는 점선 밑줄 뿐만 아니라 작은 캡션을 넣기도 하는데, 이 스타일을 없애기 위해 CSS에
font-variant
: none
을 추가하기도 합니다.
참고
- <abbr> 요소 사용하기
- 문자 레벨 시맨틱을 말하는 다른 요소들:
<a>
,<em>
,<strong>
,<small>
,<cite>
,<q>
,<dfn>
,<time>
,<code>
,<var>
,<samp>
,<kbd>
,<sub>
,<sup>
,<b>
,<i>
,<mark>
,<ruby>
,<rp>
,<rt>
,<bdo>
,<span>
,<br>
,<wbr>
.