ie6對position:fixed不支持,網路上有很多解決方法,有的在ie6,ie7上調試成功後,在ie8上又不好使,div層還是跟隨滾動條浮動;以下總結方法,在ie6 ,ie7,ie8上都調試成功,且頁面滾動條滾動時,效果還挺好,div層並不會閃爍。
css:
.fixed{
position:fixed; / *其他瀏覽器如火狐等所需要設定的*/
top:700px; /*同上*/
width:30px BR> display: none;
}
.ie{
_position: absolute;
_clear: both document.compatMode=='CSS1Compat' ) ?
documentElement.scrollTop
: document.body.scrollTop
(document.body.clientHeight) - clientHeight) - clientHeight BR>}