I am using Flexbox grid css library - flexboxgrid.com and doing a three column layout. In this three column layout I will be doing nested rows in each column.
I want to achieve that the nested rows are also equal in height with all the other columns.
This is what I am currently achieving:
Current Achievement I want that section 4 is aligned exactly with section 2.
I have also done a JSFiddle to demonstrate what I am currently achieving.
HTML:
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 col-no-gutter fullWidthBackgroundImageHome">
<div class="box">
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="box">Section1<br/><br/><br/></div>
</div>
</div>
<br/>
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="box">Section2<br/><br/><br/></div>
</div>
</div>
</div>
</div>
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 col-no-gutter fullWidthBackgroundImageHome">
<div class="box">
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="box">Section3<br/><br/><br/><br/></div>
</div>
</div>
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="box">Section4<br/><br/><br/></div>
</div>
</div>
</div>
</div>
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4 col-no-gutter fullWidthBackgroundImageHome">
<div class="box">
<div class="row">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="box">Section5</div>
</div>
</div>
</div>
</div>
</div>
Any solution on how to achieve this ?