After using Bootstrap to create three columns, I noticed that they are not the same height. The left column is larger than the others, even though they were supposed to all be equal in height.
The issue lies in the fact that I did not set a specific height for the cards within each column. As a result, if one column grows in height, the rest do not automatically adjust to match it.
Is there a way to make all the columns the same height without resorting to specifying measurements in pixels (px)?
Thank you
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" />
<div class="col-3">
<div class="row">
<div class="col" style="padding-right:0">
<div class="card cardm">
<div class="card-body" style="overflow-y: auto;">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col" style="padding-right:0">
<div class="card cardm">
<div class="card-body">
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="row">
<div class="col">
<div class="card cardm">
<div class="card-body">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card cardm">
<div class="card-body">
</div>
</div>
</div>
</div>