请参阅此链接中的图像:
https://docs.google.com/document/d/1r9L9eLBddMOdHAP3KfAx8ND-SF8b8zBl53o88aUbHT4/edit?pli=1
在上面的图片链接中,我已经用黑色矩形覆盖了页脚,我希望它应该始终位于最后一个,而底部没有任何边距。
实际上,当我删除页脚上方的 div 时,问题就出现了。我给你负责这个的代码:
HTML
<div id="footer">
<div class="shell">
<!--content here-->
</div>
</div>
CSS
.shell { width:988px; margin:0 auto; }
#footer { height:44px; background:url(images/footer.gif); line-height:44px;
color:#fff;
}
#footer a{ color:#fff; }
div-box 的 css 位于页脚上方。实际上,当我编辑边距底部时,这是负责任的,但我想知道如何在底部没有空间的情况下制作页脚。同时 div-box 的 CSS 是:
.box { background:#fbfcfc; height:100%; padding:1px; margin-bottom:10px; }
当我做margin-bottom:140px时,它在最后显示页脚。但我仍然想知道如何在底部没有空间的情况下在底部制作页脚,无论内容是短还是大。
请分享你的知识!