I have a main container with a specific width containing four divs of varying sizes. When I set float left for each div, they are displayed as follows:
##########################################################
# ## ## #
# ## ## #
# 5 ## 6 ## 7 #
# ## ## #
# ## ## #
##########################################################
############################
# #
# #
# #
# #
# 8 #
# #
# #
# #
# #
# #
############################
Now I want to rearrange them without using another container. How can I achieve the following layout?
#########################################################
# ## #
# ## #
# 5 ## #
# ## #
# ## 8 #
############################## #
############################## #
# ## ## #
# ## ## #
# 6 ## 7 ## #
# ## ## #
# ## ## #
#########################################################