分享一个有趣的css布局,代码如下:
有趣的布局
#wrap{width:300px;height:300px;border:1px solid black}
#a{background:gray;}
#b{background:red;}
#c{background:green;}
#d{background:blue;}
#e{background:yellow;}
#a{width:100px;height:200px;float:left;}
#b{width:200px;height:100px;float:left;}
#c{width:100px;height:100px;float:left}
#d{width:100px;height:200px;float:right;}
#e{width:200px;height:100px;float:left;}
a
b
c
d
e



