[ 1 ] [ 2 ] [ 3 ] [ 4 ]
My design features four floating DIVs, each set to float left with a width and height of 128px.
When the screen is narrowed, the last DIV correctly moves to the next line:
[ 1 ] [ 2 ] [ 3 ]
[ 4 ]
However, I want the last two blocks to move to the next line as well for a symmetrical look:
[ 1 ] [ 2 ]
[ 3 ] [ 4 ]
As the screen narrows further, the blocks stack vertically:
[ 1 ]
[ 2 ]
[ 3 ]
[ 4 ]