I'm currently working with Bootstrap 4 and Flexbox to ensure that the columns inside a row are properly aligned. One of my requirements is to have all columns be of the same height, so I utilize the "align-items-stretch" class () to achieve this uniformity. Now, my next challenge is aligning the content within each column to the bottom.
Is there a Flexbox solution available for this specific alignment requirement? Or am I approaching this problem from the wrong angle?
<div class="row d-flex align-items-stretch">
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
</div>