我想要达到的定位:
现在我有以下内容:
属性如下:
.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>