我如何header避免滚动页面的其余部分?我考虑过使用frame- sets和iframes,只是想知道是否有更简单,更用户友好的方法,这样做的最佳实践是什么?
header
frame- sets
iframes
使用position: fixed的div包含您的头,喜欢的东西
position: fixed
div
#header { position: fixed; } #content { margin-top: 100px; }
在此示例中,当#content开始时位于下方100px处#header,但随着用户滚动,它#header保持原位。当然,不用说,您需要确保#header有背景,以便当两个divs重叠时,其内容实际上是可见的。
#content
#header