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

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 如何在bootstrap网格中设置顶行的高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个容器,我想使用引导网格分成两个水平行.

顶行应占高度的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%作为内联样式添加到第一行,但它没有任何效果.

我在这里想念的是什么?

解决方法

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

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

原文链接:https://www.f2er.com/bootstrap/233927.html

猜你在找的Bootstrap相关文章