I have the next HTML structure:
<div class="container">
<div class="row">
<div class="col-12 col-sm-12 col-lg-4 col-md-4">
<div class="title">Some title</div>
<ul>
<li>test 1</li>
<li>test 2</li>
</ul>
</div>
</div>
<div class="col-12 col-sm-12 col-lg-4 col-md-4">
<div class="title">Some long title </div>
<ul>
<li>test 1</li>
<li>test 2</li>
</ul>
</div>
</div>
<div class="col-12 col-sm-12 col-lg-4 col-md-4" >
<div class="title">Some very very long title</div>
<ul>
<li>test 1</li>
<li>test 2</li>
</ul>
</div>
</div>
</div>
I need each of the div.title blocks to be equal in height to the highest. How I can do it?