html:
<div class="div_fixed"></div>
<div class="other_content">
content goes here
</div>
CSS:
.div_fixed{
position:fixed;
height:40px;
}
.other_content{
height:200px;
}
将div_fixed
保持固定在页面的顶部位置。
但是随着页面向上滚动, div 的内容将在 divother_content
的下边缘消失div_fixed
。
在向下滚动的情况下,不可见的内容other_content
将开始从下边缘可见div_fixed
如何做到这一点?
编辑:任何 div 都不应出现滚动条