I have a large div with a small div inside it.
I want the smaller div to be positioned at the bottom of the large div.
So I have positioned the small div using "bottom: 0px; left: 0px; position: absolute;"
The large div has "position: relative;"
As you can see the small div appears where it should but the text does not float around it.
I have tried "float: left;" in combinations with various alternatives of display, but it does not seem to work.
Screen dump
Obviously the screen dump wasn't attached.
Here it is (I hope)...
You're not going to be able
You're not going to be able to wrap text around a fixed or absolute positioned element. It's not in the flow and is not seen by other elements.
Can you link to the page? It may be that something can be found for your specific problem. Without specifics, we can only guess.
cheers,
gary