使用两栏布局,给left设置float:left; 给right设置overflow:hidden;时会出现left往下移动的问题,如下:
.left{height:820px; width:196px;background:#417ec8;float:left }
/*right*/
.right{height:820px;overflow:hidden;}
解决方法:使用定位可以解决
.left{height:820px; width:196px;background:#417ec8; position:absolute; }
/*right*/
.right{height:820px; margin-left:196px; }