Can anybody think of a non-Javascript way to do the following:
- There is a DIV element somewhere on the screen. Its position can not be predicted.
- It has a fixed width, and should overlap all the other content in the document, ie. it has "position" set to "absolute".
- This is the catch: I want the bottom edge of the DIV to be glued to the bottom of the Viewport. I tried giving the element "bottom: 0px", but in absence of a "height" setting, the whole DIV moves down to the bottom corner, which is not what I want. I want it to stretch from the random position in the document to the bottom edge of the viewport.
I cannot see a solution without using JavaScript, but maybe somebody has a brilliant idea.