I have two articles, A and B. I would like to display them like this:
AAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAA
AAAAAAAA BBBBBBBBBBBBBB
AAAAAAAA BBBBBBBBBBBBBB
AAAAAAAA BBBBBBBBBBBBBB
(i.e. the B article is in the bottom-right corner of the page).
I looked up some CSS manuals, but all manuals I found just explain how to put B in the top-right or top-left corner, or in the middle-right or middle-left part of the page (by using float). Do you have any idea how I can do this?
(if I put the div that contains B after the div that contains A, and then make B float, it is printed after A and not inside A as I want).
AAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAA
AAAAAAAA BBBBBBBBBBBBBB
AAAAAAAA BBBBBBBBBBBBBB
AAAAAAAA BBBBBBBBBBBBBB
(i.e. the B article is in the bottom-right corner of the page).
I looked up some CSS manuals, but all manuals I found just explain how to put B in the top-right or top-left corner, or in the middle-right or middle-left part of the page (by using float). Do you have any idea how I can do this?
(if I put the div that contains B after the div that contains A, and then make B float, it is printed after A and not inside A as I want).