Forum Moderators: not2easy
What I am trying to accomplish is to make the text flow around the div to both the left and beneath the nav box as you scroll down the page, rather than running underneath it. The text would appear roughly in the shape of an "L" as it flows around the nav box.
I tried placing an invisible gif, slightly larger than the size of the nav box and underneath it, within the main page text so as to create an artificial border. This works when you dispay the page initially, but upon scrolling the text starts running underneath because the gif scrolls along with the page. Using "padding" and "border" commands only push it away from the top right corner and don't affect the behavior of the main page contents.
So my question is, is there any way to force text to flow around this - or any - fixed-positioned container?
is there any way to force text to flow around this - or any - fixed-positioned container?
No..
see the full reference [w3.org], relevant quotes follow...
fixed
The box's position is calculated according to the 'absolute' model..
which basically means..
absolute..... Absolutely positioned boxes are taken out of the normal flow. This means they have no impact on the layout of later siblings.
Suzy