我刚开始学习,所以请坚持下去,我会尽量提供尽可能多的信息。
使用Bootstrap 3我一直试图调整一些内容区域,使它们具有相同的高度。我每行有4个具有未指定数量的列(我正在循环通过php数组来确定这一点)。基本上无论我需要显示多少内容区域,它们都应该使用相同的高度,或者至少与它上面的其他三个高度相同。
我一直在使用这个jquery库> https://github.com/mattbanks/jQuery.equalHeights>效果很好,但每当我调整页面大小时,内容区域的高度都不会更新(如果我将屏幕拖动到新的大小并点击刷新高度重新调整到正确的位置)
我还看了一些其他解决方案,例如> Twitter Bootstrap - Same heights on fluid columns但是当我为多行调整它时,这似乎不起作用。
任何帮助都会受到赞赏,无论我是应该使用javascript解决方案还是我可以使用CSS做什么。记住它我需要高度保持一致,并在屏幕调整大小时重新调整。我更喜欢使用Bootstrap 3,但如果解决方案可用于2,我将使用该版本。
<div class = "container">
<div class="row">
<div id="equalheight">
<div class="col-12 col-lg-3 col-md-3 col-sm-3 col-xs-12 demo">
<div class="info-block"><!-- BODY BOX-->
<p>one line of copy</p>
</div>
</div>
<div class="col-12 col-lg-3 col-md-3 col-sm-3 col-xs-12 demo">
<div class="info-block"><!-- BODY BOX-->
<p>lots and lots of copy lots and lots of copy lots and lots of copy lots and lots of copy</p>
</div>
</div>
<div class="col-12 col-lg-3 col-md-3 col-sm-3 col-xs-12 demo">
<div class="info-block"><!-- BODY BOX-->
<p>one line of copy</p>
</div>
</div>
<div class="col-12 col-lg-3 col-md-3 col-sm-3 col-xs-12 demo">
<div class="info-block"><!-- BODY BOX-->
<p>one line of copy</p>
</div>
</div>
</div>
</div>
上面是我的html,第二个内容区域有大量的副本
<script>
$('#equalheight div').equalHeights();
</script>
<script>
$(window).resize(function(){
$('#equalheight div').equalHeights();
});
$(window).resize();
</script>
上面是我的Javascript,调用前面提到的库。
感谢您提供任何帮助/建议
答案 0 :(得分:22)
你可以尝试使用CSS负边距(不需要jQuery)..
.demo{
margin-bottom: -99999px;
padding-bottom: 99999px;
background-color:#efefef;
}
#equalheight {
overflow: hidden;
}
编辑 - 另一个选项
以下是使用CSS3 flexbox
规范的另一个示例:http://www.bootply.com/126437
答案 1 :(得分:4)
Bootstrap团队开发了一个CSS类.row-eq-height
,这正是您所需要的。有关详情,请参阅here。
只需在当前行上添加此类,如下所示:
<div class="row row-eq-height">
your columns
</div>
警告:您必须每12列添加一个新的div.row.row-eq-height
答案 2 :(得分:1)
您可以使用this plugin。它工作得很好。