/*cssreset*/ html,body,div{margin:0;padding:0;} html,body{width:100%;height:100%;overflow:hidden;} .parent{position:relative;height:100%;} /*主要代码*/ .left{position:absolute;left:0;top:0;width:100px;height:100%;background:#f00;} .center{width:auto;height:100%;margin:0100px;background:#0f0;} .right{position:absolute;right:0;top:0;width:100px;height:100%;background:#00f;}
很高兴解答你的问题,我一般解决的方法是:
1、外层DIV(div.parent)设置相对定位
2、左右两个DIV设置绝对定位
3、中间DIV设置宽度为自动,左右外边距设置成左右DIV的宽度
!!如果有更方便的方法 麻烦告诉我一下~~~ thx |