Blogger Information
Blog 8
fans 1
comment 0
visits 8855
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
使用浮动与定位实现经典三列布局
BigPig
Original
988 people have browsed it

使用浮动与定位实现经典三列布局

一些代码解释我会写在代码的注释中,不会继续在代码外作过多的解释,请注意代码中的注释!

使用浮动完成

代码如下:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. /* 初始化所有样式 */
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. /* 先为页眉与页脚设置宽高背景颜色与外间距 */
  15. .header,
  16. .footer {
  17. height: 30px;
  18. background-color: powderblue;
  19. width: 100%;
  20. margin: auto;
  21. }
  22. /* 给中间主体区域创建一个容器包裹起来预防高度坍塌 */
  23. /* 这里的min-height指的是最小高度 */
  24. .container {
  25. width: 1000px;
  26. min-height: 600px;
  27. margin: 10px auto;
  28. overflow: auto;
  29. }
  30. /* 为主体的左侧设置样式,并且向左漂浮 */
  31. .container>.left {
  32. width: 200px;
  33. min-height: 600px;
  34. background-color: skyblue;
  35. float: left;
  36. }
  37. /* 为主体的右侧设置向右漂浮与样式 */
  38. .container>.right {
  39. width: 200px;
  40. min-height: 600px;
  41. background-color: skyblue;
  42. float: right;
  43. }
  44. /* 为中间的内容区设置漂浮,向左向右其实都行,但是要记住,需要计算好主体区的宽度,要把padding也给算进去,否则会把布局弄乱。三列布局的主体区域除特殊情况外无法设置自适应与最小宽度,否则会自动铺满页面,也就是宽等于百分百 。为了美观在为其添加左右外间距*/
  45. .container>.conter {
  46. float: left;
  47. width: 580px;
  48. min-height: 600px;
  49. margin: 0 10px;
  50. background-color: springgreen;
  51. }
  52. </style>
  53. </head>
  54. <body>
  55. <!-- 一列眉,一列主体,一列页脚。主体中分为左侧,右侧与中间的内容区。 -->
  56. <!-- 这里是页眉 -->
  57. <div class="header"></div>
  58. <!-- 主体 -->
  59. <div class="container">
  60. <div class="left"></div>
  61. <div class="conter"></div>
  62. <div class="right"></div>
  63. </div>
  64. <!-- 页脚 -->
  65. <div class="footer"></div>
  66. </div>
  67. </body>
  68. </html>

效果如如下:

使用绝对定位来完成经典三列布局

代码如下

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. /* 初始化所有样式 */
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. .header,
  15. .footer {
  16. height: 30px;
  17. background-color: powderblue;
  18. width: 100%;
  19. margin: auto;
  20. }
  21. /* 首先添加定位父级 */
  22. .container {
  23. width: 1000px;
  24. min-height: 600px;
  25. margin: 10px auto;
  26. position: relative;
  27. }
  28. /* 为左侧的区域添加绝对定位,并且设置距离左和上的间距设置为0将其固定在左侧 */
  29. .container>.left {
  30. width: 200px;
  31. min-height: 600px;
  32. background-color: skyblue;
  33. position: absolute;
  34. left: 0;
  35. top: 0;
  36. }
  37. /* 为右侧的区域添加绝对定位,并且设置距离右和上的间距设置为0将其固定在右侧 */
  38. .container>.right {
  39. width: 200px;
  40. min-height: 600px;
  41. background-color: skyblue;
  42. position: absolute;
  43. right: 0;
  44. top: 0;
  45. }
  46. /* 将中间的内容区设置一个绝对定位,因为左侧的区域的宽度为200px;为了显示到中央所以我们的left不能设置为0,将left设置为200px,top还是为0。内容区将会居中 */
  47. .container>.conter {
  48. width: 580px;
  49. min-height: 600px;
  50. margin: 0 10px;
  51. background-color: springgreen;
  52. position: absolute;
  53. top: 0;
  54. left: 200px;
  55. }
  56. </style>
  57. </head>
  58. <body>
  59. <!-- 一列眉,一列主体,一列页脚。主体中分为左侧,右侧与中间的内容区。 -->
  60. <!-- 这里是页眉 -->
  61. <div class="header"></div>
  62. <!-- 主体 -->
  63. <div class="container">
  64. <div class="left"></div>
  65. <div class="conter"></div>
  66. <div class="right"></div>
  67. </div>
  68. <!-- 页脚 -->
  69. <div class="footer"></div>
  70. </div>
  71. </body>
  72. </html>

效果图如下

以上就是使用漂浮与绝对定位来完成经典三列布局的所有代码与解释!

Correcting teacher:WJWJ

Correction status:qualified

Teacher's comments:写的很不错,很认真,继续加油!
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post