在我的html页面中,我修复了标题:
position : fixed
当我向下滚动时,我的页面内容会传过标题。我该如何解决这个问题?
答案 0 :(得分:8)
假设您的HTML如下:
<div id="header">...</div>
<div id="content">...</div>
尝试以下CSS:
<style type="text/css">
#header {
position:fixed;
z-index:1;
}
#content {
position:relative;
z-index:2;
}
</style>