최신 웹 개발 튜토리얼

HTML 레이아웃


웹 사이트는 종종 여러 열에서 내용 표시 (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는 웹 페이지의 다른 부분을 정의하는 새로운 의미 론적 요소를 제공합니다 :

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>

경고 : 테이블 레이아웃을 만들기 잘못은 아니지만,하지 않는 것이 좋습니다! 레이아웃을 생성하기위한 테이블을 피하십시오.