两列布局

左侧固定宽度,右侧自适应。

BFC实现
左列宽度固定
右列宽度自适应
.container { /* position: relative; */ } .container .aside { float: left; width: 200px; background: red; height:200px; } .container .main { overflow: hidden; background: blue; height:200px; }
Table实现
DIVA
DIVC
#left, #right{ height: 200px; } #left { width:200px; background: red; } #right { background: blue; } #main { display: table; width: 100%; } #left,#right { display: table-cell; } #right { width: auto; }
相对绝对定位
左列宽度固定
右列宽度自适应
.container { position: relative; } .container .aside { position: absolute; left: 0; top: 0; width: 200px; height: 200px; background: red; } .container .main { height: 200px; margin-left: 200px; background: blue; }

若要两侧都是自适应时,则使用百分比。

你可能感兴趣的:(两列布局)