日期:2014-05-17  浏览次数:20408 次

CSS+DIV实现悬浮效果,并随滚动栏滚动
如题,求个参考例子,只要CSS+DIV的,不要JS的,谢谢各位!

------解决方案--------------------
<div style="position:fixed;top:20px">ok</div>
------解决方案--------------------
不要js能随滚动栏滚动嘛?
------解决方案--------------------
探讨

引用:
<div style="position:fixed;top:20px">ok</div>


有滚动的吗?

------解决方案--------------------
IE6版本以下不支持的,LZ注意了
------解决方案--------------------
探讨

<div style="position:fixed;top:20px">ok</div>

------解决方案--------------------
CSS code
.scroll
        {
            z-index: 100;
            position: fixed;
            top: 0;
            height: 41px;
            width:750px;
            *zoom:0;
            *z-index:100;
            _position:absolute;
            _top:expression(eval(document.documentElement.scrollTop));
        }