Bootstrap div延伸到页面底部

时间:2015-05-27 23:56:49

标签: html css twitter-bootstrap footer

我有默认的bootstrap模板设置,我的问题是div和页脚之间有空格。白色空间是由于没有足够的内容来填充整个页面而引起的,因此正文显示在页脚和内容div之间。有没有办法将引导div拉伸到页面底部,同时还使页脚保持在最底部?可能有柔性盒?

以下是我正在使用的代码:(尝试将“包装器”div拉伸到页脚)

HTML

<body ng-app="firstApp">
    <div ng-view="" class="everything">

        <div class="wrapper">
            <div class="mid">
                <div class="row">
                    <div class="col-sm-12">
                        <p>This is in a div that should fill the screen</p>
                    </div>
                </div>
            </div>
           <div class="push"></div>
        </div>

       <footer class="footer">
           <div class="container">
               <p>Hello I'm the footer</p>
           </div>
       </footer>
</div> <!--closes the "everything" class -->

CSS

    html {
        height: 100%;
    }

 body {
    height: 100% !important;
    font-family: 'Roboto', sans-serif;
    color: black;
    background: green;
 }

.footer {
    text-align: center;
    padding: 30px 0;
    height: 4em;
    background-color: #7ccbc8;
    width: 100%;
}

我已经阅读了很多有关此主题的stackoverflow帖子,但我仍然对这方面的最佳实践感到困惑。

2 个答案:

答案 0 :(得分:14)

特洛伊,这是你可以做到的。

htmlbody设置为height:100vh;,并将div设置为相同的height:100vh;

您可以在 this post 中看到具有相同问题的内容。

答案 1 :(得分:1)

对我有用的是在fill元素中同时设置height: 100%;min-height: 100vh;

.fill {
    min-height: 100vh;
    height: 100%;
}

将此元素添加到父容器的类中。