현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML Address
요소 (<address>) 는 작성자가 가까운 <article>
또는 <body>
에 대한 연락처 정보를 제공하기 위해 사용됩니다; 후자의 경우에는 문서 전체에 적용됩니다.
사용시 참고:
- 콘텐츠 범주 Flow content, palpable content.
- 허용된 콘텐츠 Flow content, but with no nested <address> element, no heading content (
<hgroup>
,<h1>
,<h2>
,<h3>
,<h4>
,<h5>
,<h6>
), no sectioning content (<article>
,<aside>
,<section>
,<nav>
), and no<header>
or<footer>
element. - 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소 flow content를 허용하는 모든 요소
- DOM 인터페이스
HTMLElement
Gecko 2.0 (Firefox 4) 이전에, Gecko는HTMLSpanElement
인터페이스를 통해 이 요소를 구현했습니다.
속성
이 요소는 전역 속성만을 포함할수 있습니다.
예제
<address> You can contact author at <a href="https://www.somedomain.com/contact">www.somedomain.com</a>.<br> If you see any bugs, please <a href="mailto:[email protected]">contact webmaster</a>.<br> You may also want to visit us:<br> Mozilla Foundation<br> 1981 Landings Drive<br> Building K<br> Mountain View, CA 94043-0801<br> USA </address>
위 HTML의 결과:
address 요소가 글자를 <i>
와 <em>
요소와 같이 렌더링 하지만, 이것은 추가적인 시멘틱 정보를 전달하기 때문에 연락처 정보를 다루는데 더 적합합니다.
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<address>' in that specification. |
Living Standard | |
HTML5 The definition of '<address>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<address>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.7 or earlier) | 1.0 | 5.12 | 1.0 |
기능 | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mini | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.7) | (Yes) | (Yes) | (Yes) | (Yes) |
같이 보기
- 다른 구획-관련 요소들:
<body>
,<nav>
,<article>
,<aside>
,<h1>
,<h2>
,<h3>
,<h4>
,<h5>
,<h6>
,<hgroup>
,<footer>
,<section>
,<header>
; - Sections and outlines of an HTML5 document.