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?
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?
*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.
Source: https://ru.stackoverflow.com/questions/109509/
All Articles