经典布局案例(三):
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS布局</title>
</head>
<body>
<div style="height: 400px;width: 200px;float: left"></div>
<div style="height: 400px;width: 200px;float: left;clear: both"></div>
<div style="height: 800px;overflow: hidden"></div>
</body>
</html>
上述代码定义了三个div块,用到了float浮动属性、overflow属性和clear属性。
页面效果如下:
其中红色和蓝色div块为定宽绿色不定宽。
转载自本人ITeye链接:http://xiaozhuang0706.iteye.com/blog/2263015