我一直在跟踪我的代码,但无济于事。我的“关于我”页面上的页脚始终位于中间,覆盖内容。我该怎么办?
CSS:
#wrapper {
min-height:100%;
position:relative;
}
#footer {
width:1010px;
height:80px;
position:absolute;
bottom:50px;
left:0 auto;
background: rgb(54, 25, 25);
background: rgba(54, 25, 25, .5);
}
答案 0 :(得分:0)
只需在div
下方的body
添加一些最小高度,然后在页脚div之前关闭div
,即
<body>
<div style="overflow:auto;padding-bottom:100px;min-height:670px;">
<!-- all html codes -->
</div>
<!-- now the footer div -->
<div class="footer>
#footer htmls
</div>
</body>
答案 1 :(得分:-1)