如何用css浮点数来安排div?

时间:2012-07-16 14:43:24

标签: css-float

我有六个div,想要将它们排列成两行三列

#topLeft {float:left;} //ok
#topMiddle {float:left;} //ok
#topRight {float:right;} //ok
#bottomLeft {}
#bottomMiddle {}
#bottomRight {}

在第二行中,我尝试了许多与浮动和清除的组合 - 没有成功。

1 个答案:

答案 0 :(得分:1)

clear: left; float: left;添加到#bottomLeft,将float: left;添加到最后两个。

这是一个小提琴:http://jsfiddle.net/5nGUe/2/