我有一个网页。我的网页使用Bootstrap版本3.目前,它看起来像这样:
<div class="row">
<div class="col-lg-4">
Stuff here
</div>
<div class="col-lg-8">
Other stuff here
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div id="fillAvailableSpace">
[Main content goes here]
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
Other text goes here
</div>
<div class="col-lg-6 pull-right">
Some text goes here
</div>
</div>
我需要div
,其ID为#34; fillAvailableSpace&#34;填充屏幕的可用高度,但第一行和最后一行的大小除外。如何使用Bootstrap填充页面的剩余可用高度?
答案 0 :(得分:-1)
尝试以下内容:
Element-name {
display: inline-flex;
height: 100%;
}