在网页滚动时保持在顶部的DIV

时间:2009-10-10 18:37:09

标签: javascript html scroll

当用户向下滚动网页时,如何让DIV保持在页面顶部?

一个简单的Javascript框架会很棒!

适用于此网站:http://BiblePro.BibleOcean.com

2 个答案:

答案 0 :(得分:44)

如果您不关心IE6,可以使用position: fixed

div {
  top: 0;
  position: fixed
}

使用jQuery,请参阅此问题:What is the simplest jQuery way to have a ‘position:fixed’ (always at top) div?

答案 1 :(得分:2)

这很简单,只需设置顶部Div位置即可 e.g

启动div标签

<div style="position: fixed;background: #336699; width: 100%;">

位于顶端div标签