Can anyone explain the difference of using position:relative, position:absolute, and float in terms of its impact on the normal document flow and its children items?
e.g. When I have three items A,B,C where A is the parent item containing B and C. If I make A position:relative, B position:absolute, C position:absolute, and float both B and C to its left. I find B and C will overlap each other. However I want them to be placed in a serial order contained in A. If I simply dismiss C's position:absolute, they are placed in the right order. So can anyone summarize the impact of these three out of this simple case, and furthermore, if B and C both have children elements, what impact will they have? (like will them be taken out of normal document flow as well?)