PDA

View Full Version : Layers


colbolt
09-09-2002, 06:01 PM
Hi,

I'm trying to put a table in the middle of some text, I can do this by using this:

font-weight:bold; font-color: #034232; top: 270px; left:10px; width: 150; position: absolute;

But the text under the table doesn't flow around it. How do you get the text to flow around instead of going underneath.

Thanks

beetle
09-09-2002, 09:04 PM
Well, you are positioning it as absolute. Anything absolutely positioned does not affect the layout of it's ownerDocument. You need 'position:relative' or no special positioning at all.