Sites Web affichent souvent contenu dans plusieurs colonnes (like a magazine or newspaper) d'un (like a magazine or newspaper) .
city Gallery
Paris
Tokyo
Londres
Londres est la capitale de l'Angleterre. Il est la ville la plus peuplée du Royaume-Uni, avec une région métropolitaine de plus de 13 millions d'habitants.
Debout sur la Tamise, Londres a été un règlement important depuis deux millénaires, son histoire qui remonte à sa fondation par les Romains, qui la nommèrent Londinium.
HTML mise en page avec <div> éléments
Le <div> élément est souvent utilisé comme un outil de mise en page, car il peut facilement être positionné avec CSS.
Cet exemple utilise quatre <div> éléments pour créer une mise en page à plusieurs colonnes:
Exemple
<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>
Essayez vous - même » Le 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>
Mise en page de site web en utilisant HTML5
HTML5 offre de nouveaux éléments sémantiques qui définissent les différentes parties d'une page web:
|
Cet exemple utilise <header> , <nav> , <section> et <footer> pour créer une mise en page à plusieurs colonnes:
Exemple
<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>
Essayez vous - même » Le 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 Mise en page Utilisation des tableaux
La <table> élément n'a pas été conçu pour être un outil de mise en page.
Le but de la <table> élément est d'afficher des données tabulaires.
Mise en page peut être réalisé en utilisant la <table> élément, parce que les éléments de table peuvent être coiffés avec CSS:
Exemple
<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>
Essayez vous - même » Le CSS:
<style>
table.lamp {
width:100%;
border:1px solid #d4d4d4;
}
table.lamp th, td {
padding:10px;
}
table.lamp th {
width:40px;
}
</style>
Avertissement: Création mise en page avec des tables ne sont pas mal, mais il n'est pas recommandé! Évitez les tables pour créer la mise en page.