5

我在主页上添加了一个粘性标题,但是粘性标题似乎位于页面上其余内容的后面,所以当我向下滚动页面时,图像和文本位于标题顶部,有没有办法停止这个?

这是我的代码:

<style>
/* Reset body padding and margins */
body
{
    margin: 0;
    padding: 0;
}

/* Make Header Sticky */
#header_container
{
    background: #827878;
    border: 1px solid #666;
    height: 60px;
    left: 0;
    position: fixed;
    width: 100%;
    top: 0;
}

#header
{
    line-height: 60px;
    margin: 10 auto;
    width: 940px;
    text-align: left;
    font-size: 26px;
    color: #f5f5f5;
    line-height: 28px;
    margin-bottom: 14px;
    font-family: 'Source Sans Pro',sans-serif;
}

/* CSS for the content of page. I am giving top and bottom 
   padding of 80px to make sure the header and footer 
   do not overlap the content. */
#container
{
    margin: 0 auto;
    overflow: auto;
    padding: 80px 0;
    width: 940px;
}

#content
{
}

/* Make Footer Sticky */
#footer_container
{
    background: #eee;
    border: 1px solid #666;
    bottom: 0;
    height: 60px;
    left: 0;
    position: fixed;
    width: 100%;
}

#footer
{
    line-height: 60px;
    margin: 0 auto;
    width: 940px;
    text-align: center;
}
</style>


<!-- BEGIN: Sticky Header -->
<div id="header_container">
    <div id="header">
        Header Content
    </div>
</div>
<!-- END: Sticky Header -->
4

4 回答 4

3

添加此代码.. 在 #header_container 和 #header 样式中添加 z-index:1000 和 z-index:1001

 #header_container 
      { 
        position:fixed;
        top:0px;
        left:0px;
        z-index:1000;
       }

 #header{
      z-index:1001;
      }
于 2013-09-16T11:22:39.020 回答
1

只需使用 z-index 参数。例如 z-index: 2 (表示层的顺序)它仅适用于使用位置的元素:绝对、相对或固定

W3schools 示例: http ://www.w3schools.com/cssref/pr_pos_z-index.asp

从 iPhone 发送

于 2013-09-16T11:21:39.683 回答
0

<style type="text/css">
body{
    margin:0px;
    background:#000;
}
.header-cont {
    width:100%;
    position:fixed;
    top:0px;
}
.header {
    height:50px;
    background:#F0F0F0;
    border:1px solid #CCC;
    width:960px;
    margin:0px auto;
}
.content {
    width:960px;
    background: #F0F0F0;
    border: 1px solid #CCC;
    height: 2000px;
    margin: 70px auto;
}
</style>
</head>
<body>

<div class="header-cont">
    <div></div>
</div>

<div></div>

单击此处使用 css 检查粘滞标头的最佳链接

于 2015-04-06T14:34:16.387 回答
-3

在您的标题中添加:

position:absolute;
z-index:9999;

这将把它提升到其他一切之上

于 2013-09-16T11:19:41.543 回答