It's my understanding that position: absolute is absolute to the first parent who has a non-static position. If no parent has a specified position, then it will be absolute to the browser/window.
position: fixed on the other hand will be absolute to the browser, however it does not work for IE if in quirks mode.
My problem is that I want something to be top:0; left:0; but the website is in quirks mode, and I only edit inside my personal div. (it's a user website like myspace). There are many parent divs that have position: relative.
How can I get position: absolute to act like position: fixed without the need of the object being stationary (it can be stationary if need be)?
<script>document.getElementsByTagName("body")[0].innerHTML = "<div>this is my div</div>";</script>– thejh Dec 12 '10 at 11:19loadhandler to the window. – thejh Dec 13 '10 at 21:36