I have a loop which displays data in a bootstrap panel. The basic structure of the loop produces something like so
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3">
<div class="panel panel-default clientPanel">
<div class="panel-body">
<h4>Name: John Doe</h4>
<p>Email: something@something.com</p>
<p>Type: Sandwich</p>
<p>Group: Group 1</p>
</div>
<div class="panel-footer">
</div>
</div>
</div>
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3">
<div class="panel panel-default clientPanel">
<div class="panel-body">
<h4>Name: John Doe</h4>
<p>Email: something@something.com</p>
<p>Type: Sandwich</p>
<p>Group: Group 1</p>
</div>
<div class="panel-footer">
</div>
</div>
</div>
</div>
</div>
The problem I am having is that some panels have more data than others, and therefore their height messes up the alignment of other panels.
I have set up a JSFiddle to demonstrate. Is there any way to make the heights consistent? I have tried to use a css table layout without success.
Any advice appreciated.
Thanks