Bootstrap:父元素的FIxed div高度

时间:2014-09-06 06:34:14

标签: html css html5 css3 twitter-bootstrap

我在我的应用程序中使用bootstrap 3.2。 我连续包装了两个col-md-6。

一栏有一些内容。另一个col是空的 我希望另一列与具有一些文本的col具有相同的高度 高度应使用滚动条固定高度。 我无法手动设置高度,因为高度可以改变

参见随附的屏幕截图

Fixed height

2 个答案:

答案 0 :(得分:1)

使用col-md-12代替col-md-6

<style>
    .table tr td{width:50%;}
</style>
<table class="table table-bordered">
    <tbody>
        <tr>
            <td>
                Your text
            </td>
            <td>
                &nbsp;
            </td>
        </tr>
    </tbody>
</table>

答案 1 :(得分:0)

试试这个:

DEMO

  var height = $("#Col1")[0].clientHeight;
  $("#Col2").css('height', height + 'px');