i want to have equal column size with equal size image in the column, for example if the first column have less text and the second column have two or three paragraph text it should be equal, also the image size should equal with the second column image, if the image size is big or small than the first column but it should fit in both column in equal size.
<div class="container">
<div class="row">
<!-- this is one column -->
<div class="gold">
<div class="products owl-one owl-carousel">
<div class="pitem">
<a href="#"><img src="images/world.jpg"></a>
<h3><a href="#">this is title</a></h3>
<p>this is paragraph</p>
</div>
</div>
</div>
<!-- this second column -->
<div class="gold">
<div class="products owl-one owl-carousel">
<div class="pitem">
<a href="#"><img src="images/world.jpg"></a>
<h3><a href="#">this is title</a></h3>
<p>this is paragraph this is paragraph this is paragraph this is paragraph this is paragraph</p>
</div>
</div>
</div>
<!-- this third column -->
<div class="gold">
<div class="products owl-one owl-carousel">
<div class="pitem">
<a href="#"><img src="images/world.jpg"></a>
<h3><a href="#">this is title</a></h3>
<p>this is paragraph this is paragraph this is paragraph</p>
</div>
</div>
</div>
</div>
</div>
Css Code here.....
.gold{background: #d9edfb;}
.nopad{padding:0 !important;margin:0 !important;}
.products{position: relative; padding:25px 0px;}
.pitem {background: #fff; padding:12px; margin:5px; }
.pitem:hover{z-index: 50;border-radius: 3px;text-decoration: none;box-shadow: 0 7px 17px 0 rgba(23,84,116,0.18); border: solid 0.9px #f3f3f3;}
.pitem h3 {center; font-size: 15px}
.pitem img{width:100%; height: auto;}
.pitem p {margin-bottom: 20px; color:#444; text-align: justify;font-weight: 700;}