1

我想要达到的定位: 在此处输入图像描述

现在我有以下内容: 在此处输入图像描述

属性如下:

.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>
4

2 回答 2

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;
}
于 2012-10-30T21:25:19.913 回答
0

这个例子是类似的。

3 <div> => 中间<div> 重叠上下<div>

于 2012-10-30T23:02:55.723 回答