Utilizing the grid layout from bootstrap, I have the following structure:
<div id="prof_cont_enclose">
<div class="row">
<div class="prof_cont_row">
<div class="col-xs-12 col-sm-4 col-md-2 col-lg-2 prof_elem">
<div class="panel panel-default">
<div class="panel-body">
<img src="/techahoy/securedir/m_images/mypic.jpg" width="100%">
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2 col-lg-2 prof_elem">
<div class="panel panel-default">
<div class="panel-body">
<h1>T.V.Vignesh</h1>
</div>
</div>
</div>
</div>
</div>
</div>
The image in the first column has a width set to 100%, adjusting its height accordingly. However, I don't have a fixed height for this column.
I'm looking to equalize the height of the other columns in the first row with the height of the first column.
View the current implementation snapshot here: https://i.sstatic.net/nn1LZ.jpg
I've looked at but was unsuccessful. Any assistance would be appreciated.