最新のWeb開発のチュートリアル

HTMLレイアウト


ウェブサイトは、多くの場合、複数の列にコンテンツを表示する(like a magazine or newspaper)


市ギャラリー

ロンドン
パリ
東京

ロンドン

ロンドンはイギリスの首都です。 それは13万人を超える住民の首都圏で、イギリスで最も人口の多い都市です。

テムズ川の上に立って、ロンドンは、その歴史はロンディニウムそれを命名ローマ人、によって創立に戻って、2千年のための主要な決済となっています。

著作権©w3ii.com

使用するHTMLレイアウト<div>要素を

<div>それは簡単にCSSで配置することができるので、要素は、多くの場合、レイアウトツールとして使用されています。

この例では、4つの使用<div>複数列のレイアウトを作成するための要素を:

<body>

<div id="header">
<h1>City Gallery</h1>
</div>

<div id="nav">
London<br>
Paris<br>
Tokyo
</div>

<div id="section">
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia,
its history going back to its founding by the Romans, who named it Londinium.</p>
</div>

<div id="footer">
Copyright © w3ii.com
</div>

</body>
»それを自分で試してみてください

CSS:

<style>
#header {
    background-color:black;
    color:white;
    text-align:center;
    padding:5px;
}
#nav {
    line-height:30px;
    background-color:#eeeeee;
    height:300px;
    width:100px;
    float:left;
    padding:5px;
}
#section {
    width:350px;
    float:left;
    padding:10px;
}
#footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    padding:5px;
}
</style>

HTML5を使用したウェブサイトのレイアウト

HTML5は、Webページのさまざまな部分を定義する新しいセマンティック要素を提供しています:

HTML5セマンティック要素
  • <header> -文書またはセクションのヘッダーを定義
  • <nav> -ナビゲーションリンクのコンテナを定義します
  • <section> -文書のセクションを定義します
  • <article> -独立した自己完結型の物品を定義します
  • <aside> -脇からコンテンツを定義します(like a sidebar)
  • <footer> -文書またはセクションのフッターを定義します
  • <details> -追加の詳細を定義します
  • <summary> -の見出しを定義し<details>要素を

この例では、使用<header><nav> <section> 、および<footer>複数列のレイアウトを作成します。

<body>

<header>
<h1>City Gallery</h1>
</header>

<nav>
London<br>
Paris<br>
Tokyo
</nav>

<section>
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia,
its history going back to its founding by the Romans, who named it Londinium.</p>
</section>

<footer>
Copyright © w3ii.com
</footer>

</body>
»それを自分で試してみてください

CSS:

<style>
header {
    background-color:black;
    color:white;
    text-align:center;
    padding:5px;
}
nav {
    line-height:30px;
    background-color:#eeeeee;
    height:300px;
    width:100px;
    float:left;
    padding:5px;
}
section {
    width:350px;
    float:left;
    padding:10px;
}
footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
    padding:5px;
}
</style>

表を使用したHTMLレイアウト

<table>要素は、レイアウトツールとなるように設計されていませんでした。
目的<table>要素が表形式のデータを表示することです。

レイアウトを使用して達成することができる<table>要素、表要素がCSSでスタイリングすることができるので。

<body>

<table class="lamp">
<tr>
  <th>
    <img src="../images/lamp.jpg" alt="Note" style="height:32px;width:32px">
  </th>
  <td>
    The table element was not designed to be a layout tool.
  </td>
</tr>
</table>

</body>
»それを自分で試してみてください

CSS:

<style>
table.lamp {
    width:100%;
    border:1px solid #d4d4d4;
}
table.lamp th, td {
    padding:10px;
}
table.lamp th {
    width:40px;
}
</style>

警告:テーブルと作成レイアウトは間違っていないですが、それは推奨されません! レイアウトを作成するためのテーブルを避けてください。