Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

<section>

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

개요

HTML Section 요소 (<section>) 는 문서의 일반적인 구획을 나타냅니다. 즉, (전형적으로 제목을 가지고 있는) 컨텐츠의 주제 그룹을 말합니다. 각 <section>은 식별되어야하며, 일반적으로 (<h1>-<h6> 요소들을 자식으로 가집니다.

사용 참고 :

  • 만일 컨텐츠를 별도로 신디케이트 하고 싶다면, <section> 요소 대신에 <article> 요소를 사용하세요.
  • <section> 요소를 일반적인 컨테이너로 사용하지 마세요.
    그럴때는 구획화를 스타일링 목적만으로 하는 <div> 요소를 사용하세요. A rule of thumb is that a section should logically appear in the outline of a document.

속성

이 요소는 전역 속성만을 포함할수 있습니다.

예제

<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

문서 태그 및 공헌자

 이 페이지의 공헌자: azunyan3
 최종 변경: azunyan3,