Quote:
|
how do you get normal flow to follow blocks with absolute positioning?
|
Kind of a tricky question, since using position:absolute REMOVES those blocks from the flow altogether, so the rest of the document is 'flowing' in spite of the positioned blocks.
Quote:
|
Float does not give controlled position, does it?
|
That depends on your goal. Using position:absolute is fine in certain situations, but to base an entire layout on it is just asking for headaches, especially with IE, which coughs up hairballs over it.
Given your layout, you really should use floats. You CAN control where they go with margins and padding.
I would also recommend putting a 'wrapper' div AROUND everything else, set a width for it, and set IT to position:relative. If you want the whole thing centered, give the wrapper div a margin: 0 auto; to center it horizontally. Adjust top and bottom margins as needed.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|