LoginSignup
1
1

More than 5 years have passed since last update.

3カラムのHTML 参考記事の切りはり

Posted at

「ヘッダー部→メイン部→サイド部1→サイド部2→フッター部」
の順番がベターと言えます。
なので、文章構造の順番を意識して、HTMLコーディング

<body>
 <header id="header">
  ヘッダー部の中身
 </header>
 <div id="wrapper">
  <main id="main">
    メイン部の中身
  </main>
  <div id="side01">
    サイド部1の中身
  </div>
 </div>
 <div id="side02">
  サイド部2の中身
 </div>
 <footer id="footer">
  フッター部の中身
 </footer>
</body>
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1