10

我在一行中有三列。我希望所有三列都具有相同的高度(填充整个空白区域)

目前,它看起来像这样:

在此处输入图像描述

如您所见,左列是正确的高度。中间和右边不在的地方。

它的脚手架是这样的:

<div class="container">
    <div class="row">
    <div class="span3">
      -- menu --
    </div>
    <div class="span5">
     -- gray content --
    </div>
    <div class="span3">
     -- black content--
    </div>
    </div>
</div>

我试图将中间和右侧的跨度高度设为 100%,但这并没有做到。有人可以指导我正确的方向吗?

我正在使用最新版本的 Twitter Bootstrap

4

4 回答 4

19

我发现这个 bootstrap 3 的解决方案对我很有用

http://www.minimit.com/articles/solutions-tutorials/bootstrap-3-responsive-columns-of-same-height

它使用以下样式:

/* columns of same height styles */
.container-xs-height {
    display:table;
    padding-left:0px;
    padding-right:0px;
}
.row-xs-height {
    display:table-row;
}
.col-xs-height {
    display:table-cell;
    float:none;
}
@media (min-width: 768px) {
    .container-sm-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-sm-height {
        display:table-row;
    }
    .col-sm-height {
        display:table-cell;
        float:none;
    }
}
@media (min-width: 992px) {
    .container-md-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-md-height {
        display:table-row;
    }
    .col-md-height {
        display:table-cell;
        float:none;
    }
}
@media (min-width: 1200px) {
    .container-lg-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-lg-height {
        display:table-row;
    }
    .col-lg-height {
        display:table-cell;
        float:none;
    }
}
/* vertical alignment styles */
.col-top {
    vertical-align:top;
}
.col-middle {
    vertical-align:middle;
}
.col-bottom {
    vertical-align:bottom;
}

而这个标记

<div class="container container-xs-height">
    <div class="row row-xs-height">
        <div class="col-xs-6 col-xs-height"></div>
        <div class="col-xs-3 col-xs-height col-top"></div>
        <div class="col-xs-2 col-xs-height col-middle"></div>
        <div class="col-xs-1 col-xs-height col-bottom"></div>
    </div>
</div>
于 2014-07-29T09:39:24.780 回答
12

你可以在没有 JS 的情况下解决这个问题。只需使用

bottom: 0;
top: 0;
position: absolute; /* The container must have position: relative */

它有魔法:)

我做的一个例子:http: //fiddle.jshell.net/E8SK6/1

结果: http: //fiddle.jshell.net/E8SK6/1/show/

编辑

由于您在评论中说菜单总是最大的,因此您可以使用这个新示例: http: //fiddle.jshell.net/E8SK6/5/

如果您不知道其中哪一个最长,那么此线程上的答案可能会更好。它使用显示:表格单元格。是示例

于 2013-08-14T09:12:36.443 回答
2

啊,这是一个古老的问题。

如果你在一个元素上设置了 100% 的高度,它的父级需要一个设置的高度才能让它消失。由于 div.row 有一个流动的高度,这是行不通的。

解决方法是:

设置一个固定的高度div.row(如果你想要一个流体设计,这可能不是一个好主意)

或者

使用 jQuery 来做到这一点:

HTML

<div class="row equalHeight">
    <div class="span3">
      -- menu --
    </div>
    <div class="span5">
     -- gray content --
    </div>
    <div class="span3">
     -- black content--
    </div>
</div>

jQuery

$('.equalHeight').each(function() {
  var eHeight = $(this).innerHeight();

  $(this).find('div').outerHeight(eHeight);
});
于 2013-08-14T09:07:25.533 回答
0

今天,有可能与row-eq-height

链接: http: //getbootstrap.com.vn/examples/equal-height-columns/

于 2015-08-08T21:06:45.117 回答