<div style="background:#222;width:100px;height:100px;float:left;"></div>
<div style="background:#999;width:100%;height:100px;margin-left:110px;">
以上代码发现在ie7下边右侧div会跑到下边去,原因就是右侧div设置了width:100%,将width:100%去掉即可;
<div style="background:#222;width:100px;height:100px;float:left;"></div>
<div style="background:#999;width:100%;height:100px;margin-left:110px;">