I've been trying to put a div at the bottom of my page, OVER THE existing elements. for example :
when document is finishing :
CODE
...
</tr>
</table>
<div style="position:relative;top:-200px;">1</div>
</body>
</html>
</tr>
</table>
<div style="position:relative;top:-200px;">1</div>
</body>
</html>
so that this div be placed over the bottom of the page (whatever the height of the pge is).
It put my div upper from where it must be, but it still shows a gap under the page in the real place of the div (where it is without the relative position, works fine in FF, the gap is in IE and opera 9.0)
So I have the div place right, but a gap also. How to remove this gap ?
I tried this also :
CODE
<body>
<div style="position:absolute;top:100%;">1</div>
<div style="position:absolute;top:100%;">1</div>
But not even close.
How should I solve this?
Thanks