-1

我一直在追踪我的代码,但无济于事。我的关于我页面上的页脚总是放在中间,覆盖内容。我应该怎么办?

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);
  }
4

2 回答 2

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>
于 2013-08-17T13:59:11.777 回答
-1

我在这个网站上找到了一个很好的解决方案,该解决方案一直在我的页面上运行:

一探究竟

它是 .footer 和 .push 类,push 是让页脚“卡在”页面底部的原因......

于 2013-08-17T14:43:39.180 回答