基本思路:
- 要给左右2列添加一个父集区块
- 要给左右2个区块设置一个浮动:left/right
- 给父区块添加一个after伪类让子块撑开父集
HTML结构
<div class="container clear"> <div class="left">左侧</div> <div class="right">右侧</div> </div>
CSS样式
<style type="text/css"> .container{ width: 960px; margin: 0 auto; background-color: yellow; overflow: hidden; } .clear{ -ms-zoom: 1; } .clear:after{ content:''; display: block; clear: both; } .left{ width: 200px; height: 600px; background-color: #4169E1; float: left; } .right{ width: 750px; height: 600px; background-color: darkcyan; float: right; } </style>
转载请注明:大灰牛博客 » 网页框架布局|二列布局-左右固定-自己撑开父级块