删除页脚下方的空间?

时间:2013-12-06 11:45:21

标签: html css twitter-bootstrap

有没有办法删除页脚下方的空白区域: - http://getbootstrap.com/examples/sticky-footer-navbar/

我通过添加{position:fixed; width:100%}来解决这个问题,但它只适用于几页。对于其他页面,页脚根本不显示。我也读过这个,但它似乎不起作用:Can't remove Whitespace at the bottom of my document

有人可以解释这里的错误是什么吗?

1 个答案:

答案 0 :(得分:0)

我曾经有过使用bootstrap的相同问题 我使用这个css将页脚粘贴到页面底部:

    *{
     margin: 0;
     }

     .wrapper{
     min-height: 100%;
     height: auto !important;
     height: 100%;
     margin: 0 auto -0em;
     }

     .footer, .push{
     height: 2em;
     }

     .footer, .push{
     clear: both;
     }

将所有内容放在包装器类中,并使用包装器下面的页脚类。 当我遇到这个问题时,我发现它已经找到了它。