현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML Section 요소 (<section>
) 는 문서의 일반적인 구획을 나타냅니다. 즉, (전형적으로 제목을 가지고 있는) 컨텐츠의 주제 그룹을 말합니다. 각 <section>은 식별되어야하며, 일반적으로 (<h1>
-<h6>
요소들을 자식으로 가집니다.
사용 참고 :
- 컨텐츠 범주 플로우 컨텐츠, 구획 컨텐츠, palpable 컨텐츠.
- 허용된 컨텐츠 플로우 컨텐츠.
- 태그 생략 None, both the starting and ending tag are mandatory.
- 허용된 부모 요소플로우 컨텐츠를 허용하는 모든 요소.
<section>
요소는<address>
의 후손이 될수 없다는 점을 참고하세요. - DOM 인터페이스
HTMLElement
속성
이 요소는 전역 속성만을 포함할수 있습니다.
예제
<section> <h1>Heading</h1> <p>Bunch of awesome content</p> </section>
예제2
Before
<div> <h2>Heading</h2> <img>some image</img> </div>
After
<section> <h2>Heading</h2> <img>some image</img> </section>
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<section>' in that specification. |
Living Standard | |
HTML5.1 The definition of '<section>' in that specification. |
Working Draft | |
HTML5 The definition of '<section>' 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 (iOS 4.2) |
See also
- 다른 구획 관련 요소들:
<body>
,<nav>
,<article>
,<aside>
,<h1>
,<h2>
,<h3>
,<h4>
,<h5>
,<h6>
,<hgroup>
,<header>
,<footer>
,<address>
; - Sections and outlines of an HTML5 document.