I need assistance in creating a layout with two columns. The first column should have three smaller boxes of equal height, while the second column should have one larger box. However, when I try to increase the height of the box in the second column, the last two boxes in the first column get pushed further down the page. I want the two columns to be aligned next to each other. (I want the red and blue boxes to move up next to the large grey box)
HTML:
<div class="row">
<div class="col-xs-4">
<div class="l-board col-xs-12 col-xs-offset-1"><br><br><br><br><br><br><br><br><br><br></div>
</div>
<div class="col-xs-7">
<div class="dashboard col-xs-12 col-xs-offset-1"><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-4">
<div class="rel-board col-xs-12 col-xs-offset-1"><br><br><br><br><br><br><br><br><br><br></div>
</div>
</div>
<div class="row">
<div class="col-xs-4">
<div class="exp-board col-xs-12 col-xs-offset-1"><br><br><br><br><br><br><br><br><br><br></div>
</div>
</div>
CSS:
.l-board{
background-color:#F5FCF4;
margin-bottom: 10%;
}
.rel-board{
background-color:#FAEDED;
margin-bottom: 10%;
}
.exp-board{
background-color: #F0F5FA;
margin-bottom: 10%;
}
.dashboard{
background-color: #F4F4F4;
}
Current Look:
https://i.sstatic.net/tTYwQ.png
Layout that I want: