HTML 布局

从一个结构良好的Html文档开始是非常重要,因为你可以按照默认的方式来搭建页面,而不是自造车轮。

使用 <div> 元素的 HTML 布局

注释:<div> 元素常用作布局工具,因为能够轻松地通过 CSS 对其进行定位。这个例子使用了四个 <div> 元素来创建多列布局:

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. #header {
  6. background-color:black;
  7. color:white;
  8. text-align:center;
  9. padding:5px;
  10. }
  11. #nav {
  12. line-height:30px;
  13. background-color:#eeeeee;
  14. height:300px;
  15. width:100px;
  16. float:left;
  17. padding:5px;
  18. }
  19. #section {
  20. width:350px;
  21. float:left;
  22. padding:10px;
  23. }
  24. #footer {
  25. background-color:black;
  26. color:white;
  27. clear:both;
  28. text-align:center;
  29. padding:5px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div id="header">
  35. <h1>世界名城</h1>
  36. </div>
  37. <div id="nav">
  38. 伦敦<br>
  39. 巴黎<br>
  40. 东京<br>
  41. </div>
  42. <div id="section">
  43. <h1>伦敦</h1>
  44. <p>
  45. 伦敦是英国的首都。它是英国人口最多的城市,拥有超过1300万居民的大都市。
  46. </p>
  47. <p>
  48. 伦敦位于泰晤士河上,两千年来一直是一个主要的定居点,它的历史可以追溯到罗马人建立它的时候,罗马人把它命名为朗蒂尼。
  49. </p>
  50. </div>
  51. <div id="footer">
  52. 版权所有
  53. </div>
  54. </body>

使用 HTML5 的网站布局

HTML5 提供的新语义元素定义了网页的不同部分:

HTML5 语义元素
header定义文档或节的页眉
nav定义导航链接的容器
section定义文档中的节
article定义独立的自包含文章
aside定义内容之外的内容(比如侧栏)
footer定义文档或节的页脚
details定义额外的细节
summary定义 details 元素的标题

这个例子使用 <header>, <nav>, <section>, 以及 <footer> 来创建多列布局:

实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. header {
  6. background-color:black;
  7. color:white;
  8. text-align:center;
  9. padding:5px;
  10. }
  11. nav {
  12. line-height:30px;
  13. background-color:#eeeeee;
  14. height:300px;
  15. width:100px;
  16. float:left;
  17. padding:5px;
  18. }
  19. section {
  20. width:350px;
  21. float:left;
  22. padding:10px;
  23. }
  24. footer {
  25. background-color:black;
  26. color:white;
  27. clear:both;
  28. text-align:center;
  29. padding:5px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <header>
  35. <h1>世界名城</h1>
  36. </header>
  37. <nav>
  38. 伦敦<br>
  39. 巴黎<br>
  40. 东京<br>
  41. </nav>
  42. <section>
  43. <h1>London</h1>
  44. <p>
  45. 伦敦是英国的首都。它是英国人口最多的城市,拥有超过1300万居民的大都市。
  46. </p>
  47. <p>
  48. 伦敦位于泰晤士河上,两千年来一直是一个主要的定居点,它的历史可以追溯到罗马人建立它的时候,罗马人把它命名为朗蒂尼。
  49. </p>
  50. </section>
  51. <footer>
  52. 版权所有
  53. </footer>
  54. </body>
  55. </html>

使用表格的 HTML 布局

注释:<table> 元素不是作为布局工具而设计的。<table> 元素的作用是显示表格化的数据。使用

元素能够取得布局效果,因为能够通过 CSS 设置表格元素的样式:
实例
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. table.lamp {
  6. width:100%;
  7. border:1px solid #d4d4d4;
  8. }
  9. table.lamp th, td {
  10. padding:10px;
  11. }
  12. table.lamp th {
  13. width:40px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <table class="lamp">
  19. <tr>
  20. <th>
  21. <img src="/images/lamp.jpg" alt="Note" style="height:32px;width:32px">
  22. </th>
  23. <td>
  24. 表元素不是设计为布局工具的。
  25. </td>
  26. </tr>
  27. </table>
  28. </body>
  29. </html>