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)?

link|improve this question

Can you kill that whole outside html using javascript? <script>document.getElementsByTagName("body")[0].innerHTML = "<div>this is my div</div>";</script> – thejh Dec 12 '10 at 11:19
@thejh I tried that and IE complains "Unable to modify the parent container element before the child element is closed" – BHare Dec 12 '10 at 12:10
Do it in an onload handler. Add a load handler to the window. – thejh Dec 13 '10 at 21:36
feedback

1 Answer

up vote 0 down vote accepted

early versions of IE just dont support position: fixed;

the only thing i know of is a javacript workaround like so:

var layerPadding = 5;
function layerScrollFixEx() {
    if (layerGetScrollPosition() != (document.getElementById('layer').offsetTop - layerPadding)) {
        document.getElementById('layer').style.top = layerGetScrollPosition() + layerPadding + "px";
    }
}

function layerGetScrollPosition() {
    if (typeof window.pageYOffset != 'undefined') {
         return window.pageYOffset;
    }
    else if (typeof document.compatMode != 'undefined' && document.compatMode != 'BackCompat') {
         return document.documentElement.scrollTop;
    }
        else if (typeof document.body != 'undefined') {
         return document.body.scrollTop;
    }
}
layerScrollInterval = window.setInterval("layerScrollFixEx()", 1);

this is a code excerpt from some code that i did a while back when this was still relevant.

link|improve this answer
This seems to only mimic the ability to "fix" in one place by redefining its position. I am looking to to do top:0;left:0 in reference to the browser window – BHare Dec 12 '10 at 12:14
thats exactly it, the sample only shows the fix for vertical scrolling... but you can easily adapt it – Joe Hopfgartner Dec 12 '10 at 13:13
you want the element to stay where it is while scrolling dont you? thats what position fixed is. otherwise you would need position absolute, which is perfectly supported... – Joe Hopfgartner Dec 12 '10 at 13:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.