I am working with DIVs with float:left
when DIV 2 increases size
we get something like this:
+---+ +----+
| 1 | | |
+---+ | |
| 2 |
| |
| |
+----+
+---+
| 3 |
+---+
Is there a way to achieve this:
+---+ +----+
| 1 | | |
+---+ | |
+---+ | 2 |
| 3 | | |
+---+ | |
+----+
Without having to resort to jquery?

