实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>普通三列布局</title> <style type="text/css"> .header, .footer { width: 100%; height: 65px; background-color: #DCDCDC; } .nr { width: 960px; min-height: 100%; background-color: #FFDEAD; margin: auto; text-align: center; line-height: 65px; } .zj { width: 960px; min-height: 100%; margin: auto; overflow: hidden; } .box { width: 100%; float: left; background-color: #FF6A6A; } .b, .c { width: 180px; min-height: 650px; float: left; background-color: #C1FFC1; } .box .a { min-height: 650px; /*margin-left: 180px; margin-right: 180px;*/ margin: 0 180px; } .b { margin-left: -100%; } .c { margin-left: -180px; } </style> </head> <body> <div class="header"> <div class="nr">网站头部</div> </div> <div class="zj"> <div class="box"> <div class="a">中</div> </div> <div class="b">左</div> <div class="c">右</div> </div> <div class="footer"> <div class="nr">网站底部</div> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
原理:
经典双飞翼三列布局:
在双飞翼布局中,把中间容器在首位,左右容易放在后面;
双飞翼布局左中右容器都是左浮动的;
首先实现中间容器左浮动,然后实现左边容器负100%值的左浮动,设置右边容器负对应宽度的左浮动,最后设置中间容器margin:0 左右容器宽度px;就可以实现双飞翼三列布局;
圣杯: