I have the following code in my project, it has many child elements inside the column. when the text length inside the column changes, both aside elements are getting different height. How to set same height to the aside elements in the div using css?
<section class="table">
<div>
<aside class="column-one">
<h4></h4>
</aside>
<aside class="column-two blue">
<h4></h4>
</aside>
</div>
</section>