웹 사이트는 종종 여러 열에서 내용 표시 (like a magazine or newspaper) .
도시 갤러리
런던
파리
도쿄
파리
도쿄
런던
런던은 영국의 수도 도시입니다. 그것은 만 13 이상 주민의 수도권으로, 영국에서 가장 인구가 많은 도시입니다.
템스 강에 서, 런던의 역사는 Londinium로 이름을 로마인에 의해 창립으로 거슬러 올라가는, 두 천년의 주요 정착하고있다.
저작권 © w3ii.com
HTML 레이아웃 사용하여 <div> 요소를
<div> 가 CSS를 쉽게 위치 결정할 수 있기 때문에 소자는 종종 레이아웃 툴로서 사용된다.
이 예에서는 네 사용 <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는 웹 페이지의 다른 부분을 정의하는 새로운 의미 론적 요소를 제공합니다 :
|
이 예에서 사용 <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>
경고 : 테이블 레이아웃을 만들기 잘못은 아니지만,하지 않는 것이 좋습니다! 레이아웃을 생성하기위한 테이블을 피하십시오.