Strony internetowe często wyświetla zawartość w wielu kolumnach (like a magazine or newspaper) .
Galeria Miejska
Paryż
Tokio
Londyn
Londyn jest stolicą Anglii. Jest to najbardziej zaludnione miasto w Wielkiej Brytanii, z metropolii powierzchni ponad 13 milionów mieszkańców.
Stojąc na Tamizie, Londyn jest jednym z głównych rozliczenia przez dwa tysiąclecia, jej historia sięga do jej założenia przez Rzymian, którzy nazwali go Londinium.
Układ HTML Korzystanie <div> Elementy
<div> element jest często wykorzystywany jako narzędzie układ, ponieważ może być łatwo ustawione w CSS.
Przykład ten wykorzystuje cztery <div> elementy do tworzenia wielu układ kolumn:
Przykład
<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>
Spróbuj sam " 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>
Układ witryny za pomocą HTML5
HTML5 oferuje nowe elementy semantyczne, które definiują różne części strony internetowej:
|
W tym przykładzie użyto <header> , <nav> , <section> , a <footer> , aby utworzyć wielokrotny układ kolumn:
Przykład
<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>
Spróbuj sam " 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>
Układ HTML przy użyciu tabel
<table> element nie został zaprojektowany jako narzędzie układ.
Celem <table> elementu jest do wyświetlania danych tabelarycznych.
Układ może być osiągnięty przy użyciu <table> elementem, ponieważ elementy tabeli może być stylem z CSS:
Przykład
<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>
Spróbuj sam " CSS:
<style>
table.lamp {
width:100%;
border:1px solid #d4d4d4;
}
table.lamp th, td {
padding:10px;
}
table.lamp th {
width:40px;
}
</style>
Ostrzeżenie: Tworzenie układ z tabel nie jest źle, ale nie jest to zalecane! Unikać tabel do tworzenia układu.