解决IE6下不支持fixed方法

div {
    position: fixed
    top: 50px;  /* 其他浏览器下定位,在这里可设置坐标*/
    _position: absolute; /*IE6 用absolute模拟fixed*/
    _top: expression(documentElement.scrollTop + 50 + "px"); /*IE6 动态设置top位置*/
}
body {
    _background-image: url(about:blank);     /*用浏览器空白页面作为背景*/
    _background-attachment: fixed;             /* prevent screen flash in IE6 确保滚动条滚动时,元素不闪动*/
}

此外,还可使用javascript实现兼容。

posted @ 2014-10-15 11:33  xiyunfang  阅读(89)  评论(0)    收藏  举报