현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
Introduced in HTML5
개요
HTML <header>
요소는 소개나 탐색을 돕는것의 그룹을 나타냅니다. 이것은 일부 제목 요소들을 포함할수도 있지만, 로고나 구획의 제목, 탐색 폼 과 같은것들이 포함수도 있습니다.
사용시 참고:
- The
<header>
element is not sectioning content and therefore doesn't introduce a new section in the outline.
- 콘텐츠 범주 Flow content, palpable content.
- 허용된 콘텐츠Flow content
하지만<header>
,<footer>
는 후손이 될수 없습니다. - 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소 Flow content를 허용하는 모든 요소
<header>
요소는<address>
,<footer>
, 다른<header>
의 후손이 될수 없다는점을 참고하세요. - DOM 인터페이스
HTMLElement
속성
이 요소는 전역 속성만을 포함합니다.
예제
<header> a logo </header>
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<header>' in that specification. |
Living Standard | |
HTML5 The definition of '<header>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 5 | 4.0 (2.0) | 9.0 | 11.10 | 4.1 |
기능 | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 2.2 | 4.0 (2.0) | 9.0 | 11.0 | 5.0 |
같이 보기
- 더 자세한설명: The header element | HTML5 Doctor
- 다른 구획 관련 요소들:
<body>
,<nav>
,<article>
,<aside>
,<h1>
,<h2>
,<h3>
,<h4>
,<h5>
,<h6>
,<hgroup>
,<footer>
,<section>
,<address>
; - Sections and outlines of an HTML5 document.