For all but IE, the following css works:

width:310px; height:35px; position:fixed; top:auto; bottom:0px; z-index:1000; display:block; overflow:hidden; 

But in IE does not work. How to fix a div in the lower right corner in IE?

    1 answer 1

     *html (нужный DIV) { position: absolute; top: expression(document.getElementsByTagName( `body`)[0].scrollTop + "px"); 

    Maybe try it?

    Also prescribe

     body { background:url(about:blank); background-attachment: fixed; } 

    To block did not twitch.

    • Yes, but it fixes in the upper right corner, and not in the lower one - Arthur Lodenev
    • And what if the top is simply 100% offset? - Emil Sabitov