NG集 | choco

choco

Design,Photo

※使い方を間違えると

アウトラインが崩れるので注意

とくに<section>は気をつける。



×××NG例①××× 

<article class="entry">

 <header>

  <h2> タイトル</h2>

 </header>


 <section class="body">

  <p>本文</p>

  <p>テキストテキスト</p>

 </section>  <footer>...</footer> </article>


×××NG例②××× 

<header id=logo>

 <section>

  <h1><img src=logo...> </h1>

 </section>

</header>

×××NG例③××× 

<section id=wrapper>
 <section id=main>

  <article>

   <section>

    <header>...</header>

    ...

   </section>

  </article>
 </section>
 ...
</section>

セクションは意味的なもの。アウトラインを意識するべき。

レイアウト目的なら<div>で行う。