Hi
I have a peculiar problem, which I think that a lot of other people have had before, but I'm not so sure there is a good (pure CSS) solution to it...
I have a document with the following structure:
- TOP: 100% wide, 200px high
- MIDDLE: 100% wide, variable height
- BOTTOM: 100% wide, 200px high
BOTTOM is essentially a background image which should stick to the bottom right hand side corner of the browser window at all times. However, I don't want to use absolute
positioning relative to the body of the document, because then it will flow under the text which is in MIDDLE.
So basically I want the same effect as the one I would get using absolute positioning, but I don't want text or other elements to sort of flow over it. It should behave just as if it didn't have any particular positioning, with width 100% and height 200px, but always in the bottom right hand side of the document.
I'll be glad to answer any questions about this problem, as I'm sure you won't understand this. ;)