HTML5부터 더 이상 사용되지 않습니다. <abbr>을 이용해 주세요.
설명
The HTML Acronym Element (<acronym>)
allows authors to clearly indicate a sequence of characters that compose an acronym or abbreviation for a word.
<acronym> 요소는 웹 저작자가 명확하게 약자의 원래 표현의 약자를 표시하려고 할 때 사용한다.
참고 : This element has been removed in HTML5 and shouldn't be used anymore. Instead web developers should use the <abbr> element.
참고 : 이 요소는 HTML5에서는 폐지되었으므로 사용하지 말자. 대신에 <abbr> 요소를 사용하자.
Usage Context
속성
지원 | Gecko | Presto | WebKit | Trident |
Normative document |
DOM Interface
This element implements the HTMLElement
interface.
이 요소는 HTMLElement 인터페이스를 구현하였다.
참고 : Up to Gecko 1.9.2 inclusive, Firefox implements the HTMLSpanElement interface for this element.
Gecko 1.9.2버전까지는, 파이어폭스에서 이 요소를 위해 HTMLSpanElement 인터페이스를 구현하였다.
예제
The <acronym title="World Wide Web">WWW</acronym> is only one component of the Internet.
<acronym title="World Wide Web">WWW</acronym> 은 인터넷을 구성하는 것의 한 요소일 뿐이다.
기본 스타일
Though the purpose of this tag is purely for the convenience of the author, its default styling varies from one browser to another:
- Some browsers, like IE, do not style it differently than a
<span>
element. - Opera, Firefox, and some others add a dotted underline to the content of the element.
- A few browsers not only add a dotted underline, but also put it in small caps; to avoid this styling, adding something like font-variant: none in the CSS take cares of this case.
It is therefore strongly recommended that web authors do not rely on the default styling.
이 요소의 원래 의도는 웹 저작자의 편의를 위한 것이지만, 이 요소를 표시하는 스타일은 브라우저마다 다르다.
- IE 등의 몇몇 브라우저에서는 요소를 요소와 똑같은 모양으로 표시한다.
- 오페라, 파이어폭스 등 몇몇 브라우저에서는 요소의 내용에 점선 밑줄을 표시한다.
- 몇몇 브라우저에서는 점선뿐만 아니라, 소문자로 표시한다. 이런 스타일의 적용을 막으려면, CSS에서 font-variant: none이라고 써주면 된다.
따라서 웹 저작자는 브라우저의 기본 스타일에 의존하지 말 것을 권고한다.
호환성
기능 | 구글크롬 | 파이어폭스Gecko) | 인터넷 익스플로러 | Opera | Safari |
---|---|---|---|---|---|
기본적인 지원 | 지원 | 지원 | ? | ? | 지원 |
기능 | 안드로이드 | 파이어폭스 모바일(Gecko) | 인터넷 익스플로러 모바일 | 오페라 모바일 | 사파리 모바일 |
---|---|---|---|---|---|
기본적인 지원 | ? | ? | ? | ? | ? |
참고
- 원본 - https://developer.mozilla.org/en/HTML/Element/acronym