Posts /

HTML: < main > 태그

Twitter Facebook Google+
20 Sep 2018

HTML Tag : <main> 태그

<main>
  <h1>Web Browsers</h1>
  <p>Google Chrome, Firefox, and Internet Explorer are the most used browsers today.</p>

  <article>
    <h1>Google Chrome</h1>
    <p>Google Chrome is a free, open-source web browser developed by Google,
    released in 2008.</p>
  </article>

main 태그란?

main 태그는 문서의 주요 내용을 지정합니다. main요소의 내용은 문서에 고유해야합니다. 사이드바,탐색링크, 저작권 정보,사이트 로고 및 검색 양식과 같이 문서 전반에 걸쳐 반복되는 내용이 포함되서는 안됩니다.

문서에 하나 이상의 main요서가 없어야 하며 main요소는 article,aside,foote,header,nav요소의 하위 항목으로 사용할 수 없습니다.

main요소는 IE12이상에서만 작동합니다.


Twitter Facebook Google+