我正在使用Foundation 5 Framework,需要创建3个相同高度的列。
第二列包括2个面板,我需要将所有列拉伸到全高(在第二列中,只有第二个面板拉伸到全高)。
有什么想法吗?我不想为此使用块网格。
我的代码:
<div class="row">
<div class="small-12 medium-4 columns">
<div class="panel">
<!-- here comes the content--->
</div>
</div>
<div class="small-12 medium-4 columns">
<div class="panel">
<!-- here comes the content--->
</div>
<div class="panel">
<!-- here comes the content--->
</div>
</div>
<div class="small-12 medium-4 columns">
<div class="panel">
<!-- here comes the content--->
</div>
</div>
</div>
答案 0 :(得分:9)
对于其他寻找此问题的人来说,现在它已作为均衡器内置于Foundation中 http://foundation.zurb.com/docs/components/equalizer.html
来自他们的文档:
您可以使用一些数据属性创建一个相等高度的容器。将
data-equalizer
属性应用于父容器。然后将data-equalizer-watch
属性应用于您希望具有相同高度的每个元素。data-equalizer-watch
属性的高度将等于最高元素的高度。
<div class="row" data-equalizer>
<div class="large-6 columns panel" data-equalizer-watch>
...
</div>
<div class="large-6 columns panel" data-equalizer-watch>
...
</div>
</div>
答案 1 :(得分:3)
我能够实现的唯一解决方案是使用jQuery同步高度来自joanhard on GitHub,在a Foundation 4 thread on stackoverflow中引用。
我把它扔进了codepen,http://codepen.io/anon/pen/zgnBE。这是完整的来源。
<div class="main">
<div class="full-height row " >
<div class="full-height small-12 medium-4 columns " >
<div class="full-height-panel panel " >
<!-- here comes the content--->
hello
</div>
</div>
<div class="full-height small-12 medium-4 columns ">
<div class="panel">
<!-- here comes the content--->
hi
</div>
<div class="panel">
<!-- here comes the content--->
hi2
</div>
</div>
<div class="small-12 medium-4 columns">
<div class="panel">
<!-- here comes the content--->
holla
</div>
</div>
</div>
</div>
html, body
{
height: 100% !important;
padding: 0px;
margin:0;
}
.full-height
{
display:table;
}
.full-height-panel
{
display:table-cell;
}
$(document).foundation();
$(".full-height").height($(".main").parent().height());
我对height:auto;
,height:100%;
,panel
,column
到row
的所有元素都尝试了body
和HTML
元素。唯一的工作结果是由于填充或边距而产生滚动溢出。我尝试消除它们,但这需要更长的时间来调试。
答案 2 :(得分:0)
在粉底(使用EM到PX转换)中,他们的主要变化是:640px(堆叠所有大/中6)。所以使用像这样的div,带有火的CSS并使它们成为
<div class="row equalized-to">
<div class="large-6 medium-6 columns">
<div class="panel full-height">
把它放在最后:
if($(window).width()>640){ //if not stacked(no need for height)
$(".full-height").height($(".equalized-to").height()); //find row height and apply it to all columbs by adding styles
}
答案 3 :(得分:0)
<div class="about-us">
<div class="row">
<div class="columns medium-4">
<div class="like">CONTENT 1</div>
</div>
<div class="columns medium-4">
<div class="like">CONTENT 2</div>
</div>
<div class="columns medium-4">
<div class="like">CONTENT 3</div>
</div>
</div>
</div>
css
<style>
.row{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.like{
height:100%;
}
</style>
添加内部div height =&#34; 100%&#34;