网页布局代码
xhtml部分
<div id="box1"> </div> <div id="box2"> </div> <div id="box3"> </div>
css部分
#box1 {
float: left;
margin-bottom: 10px;
width: 200px;
height: 300px;
background: #CCC;
}
#box2 {
clear: left;
float: left;
width: 200px;
height: 200px;
background: #CCC;
}
#box3 {
margin-left: 210px;
height: 510px;
background: #CCC;
}
* html #box3 {
margin-left: 207px; /* 解决IE5,IE6中触发Layout后3px偏移bug */
}