I have created a row using bootstrap row design.
<div class="row">
<div class="col-xs-3 col-md-3">
<div class="heading">
<h1> Fist column h1 </h1>
</div>
<div class="content">
<p> First column p </p>
</div>
</div>
<div class="col-xs-3 col-md-3">
<p> Second column p </p>
<p> Second column p </p>
<p> Second column p </p>
</div>
<div class="col-xs-3 col-md-3">
<h1> Third column h1 </h1>
<p> Third column p </p>
<h1> Third column h1 </h1>
<p> Third column p </p>
</div>
<div class="col-xs-3 col-md-3">
<div class="new-content">
<p> Fourth column p </p>
</div>
</div>
How can i make sure this row is vertically alligned against every column? So no matter how many elements are included in each row - they are always vertically alligned within a row height to other columns (if that helps we can assume the height of row is 70px fixed).
Please find fiddle here: https://jsfiddle.net/nkfdhpo3/
And the visualization image what I want to achieve: