解决IE6固定定位

HTML:

<div class="back"></div>

CSS:

<style>
*{
    margin: 0px;
    padding: 0px;
}
body{
    height: 5000px;
}
html{
    background: url(about:blank);
}
.back{
    width: 50px;
    height: 50px;
    background: url(./back.gif) no-repeat;
    position: fixed;
    right: 50px;
    bottom: 50px;
    _position: absolute;
    _right: 50px;
    _top: expression(document.documentElement.clientHeight-this.offsetHeight-50+document.documentElement.scrollTop);
    display: none;
}
</style>

图片素材:

 

posted @ 2013-12-02 16:28  白小虫  阅读(159)  评论(0编辑  收藏  举报