如何在bootstrap网格中设置顶行的高度?

时间:2014-12-01 14:52:22

标签: twitter-bootstrap twitter-bootstrap-3

我有一个容器,我想使用引导网格分成两个水平行。

顶行应占据高度的80%,剩下的则占据底部。

<div class="container-fluid">
    <div class="row" style="height:80%">
        <div class="col-xs-12">This should take up 80% of the height</div>
    </div>

    <div class="row">
        <div class="col-xs-12">This should take up the remaining 20% of the height</div>
    </div>
</div>

我尝试将高度:80%作为内联样式添加到第一行,但它没有任何效果。

我在这里缺少什么?

1 个答案:

答案 0 :(得分:9)

设置

body, html, .container-fluid {
     height: 100%;
}

一个例子: http://jsfiddle.net/wqkLodb6/