I'm using Foundation 5 Framework and need to create 3 same height columns.
Second columns includes 2 panels, I need to stretch all columns to full height (in the second columns there will be just second panel stretched to full height).
Any idea? I don't want to use block grid for this.
My code:
<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>