I want all H3 tag height to be of equal size. I used flex but got stuck at some level.
So I need help, please suggest CSS for the given html and css.
Sample Code : Demo
Below is the HTML
<div class='col'>
<div class="card span12">
<h3 class="post-title">Lorem Ipsum is simply dummy text of the printing and typesetting</h3>
<div class="post-body clearfix">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book</p>
</div>
</div>
</div>
<div class='col'>
<div class="card span12">
<h3 class="post-title">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's.</h3>
<div class="post-body clearfix">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
</div>
</div>
<div class='col'>
<div class="card span12">
<h3 class="post-title">How can non-profits leverage predictive analytics to build forecasting models?</h3>
<div class="post-body clearfix">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's.</p>
</div>
</div>
</div>
</section>