Is there any way to make one thumbnail the same height as another thumbnail?
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="thumbnail">
<img src="img/3.jpg">
<div class="caption">
<h5>Lorem ipsum dolor sit amet</h5>
<a href="#" class="uppercase bold">recipe</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="thumbnail">
<img src="img/3.jpg">
<div class="caption">
<h1>how to</h1>
<a href="#" class="uppercase bold">recipe</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="thumbnail">
<img src="img/3.jpg">
<div class="caption">
<h5>Lorem ipsum dolor sit amet, consectetur </h5>
<a href="#" class="uppercase bold">recipe</a>
</div>
</div>
</div>
</div>
The result of this code is, the second thumbnail height is taller than the first and the <a href >
height between 1 to another is different
like this https://jsfiddle.net/hbfu2b97/1/
If you make the result screen bigger u can see the difference.