一、需求1.实现左中右三栏式布局;2.左右两个 DIV的宽度固定100px;3.中间 DIV随着屏幕的宽度自适应;4.同时兼容 IE6、7、8;二、HTML 部分三、CSS 部分HTML,BODYfont-size: 9pt;font-family: 宋体;margin: 0px;height: 100%;width:100%;overflow:hidden;#div_leftposition:absolute;height: 100%;width:200px;top:0px;left:0px;background:green;z-index:1;#div_mainposition:relative; height: 100%;width:auto;margin-left:200px;margin-right:200px;background:red;overflow: auto;#div_rightposition:absolute;height: 100%;width:200px;right:0px;top:0px;background:#ccc;