Forum Moderators: not2easy

Message Too Old, No Replies

Wrapping text around absolute divs

         

Nutter

7:28 pm on Jun 22, 2005 (gmt 0)

10+ Year Member



I'm working on a page that will have an image in the top left corner and one in the bottom right corner of the text area. Top left is easy, just floats. I've been using absolute divs for the bottom right, but text won't wrap around them. Is there a way to have text wrap around absolute divs, or is there a better method than what I'm trying?

Thanks,

sldesigns

8:02 pm on Jun 22, 2005 (gmt 0)

10+ Year Member



Since the box in the lower corner is absolute, it's taken out of the document flow. Have you tried float: right? You can then use margins like margin-top: 50px; OR margin-bottom: 10px;

Nutter

8:10 pm on Jun 22, 2005 (gmt 0)

10+ Year Member



Well, it's really a stack of divs if that matters. I'm trying to use it to wrap text around an irregular image.

How do I get the floated ones to align to bottom?

Nutter

8:16 pm on Jun 22, 2005 (gmt 0)

10+ Year Member



I can stick the divs floating right before the last paragraph or so and it works ok. But that's not ideal.