如何在页眉和页脚上方定位内容

时间:2012-10-30 21:23:37

标签: html css layout positioning

我想要实现的定位: enter image description here

现在我有以下内容: enter image description here

属性如下:

.header, .footer {
    background: #666;
    height: 100px;
}

.content {
    background: #ccc;
    margin: -25px auto;
    min-height: 500px;
    width: 960px;
}

所以问题是内容位于页脚下方,我不知道如何修复它。 z-index不起作用。

我的HTML:

<div class="header"></div>
<div class="content"></div>
<div class="footer"></div>

2 个答案:

答案 0 :(得分:4)

试试这个

.header, .footer {
    background: #666;
    height: 100px;
    position: relative;
    z-index: 1;
}

.content {
    background: #ccc;
    margin: -25px auto;
    min-height: 500px;
    width: 960px;
    position: relative;
    z-index: 100;
}

答案 1 :(得分:0)