I've set up a responsive card layout using Bootstrap 4's card-deck
class utility. Everything is functioning as expected, but I'm looking to align the top of the footers instead of having them default to bottom aligning and potentially overflowing. I'm not sure how to achieve equal height footers per row using flexbox. I'd prefer not to rely on JavaScript for this, as I've successfully built the entire page using flexbox alone.
Here's the JsFiddle link for reference: http://jsfiddle.net/nus1v4ak/4/
<div class="container">
<ul class="card-deck">
<li class="col-xs-4 card col-sm-4 col-lg-3">
<div class="card-body">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard</p>
</div>
<div class="card-footer">
<p>paragraph 1</p>
</div>
</li>
<!-- additional <li> elements with various content sizes go here -->
</ul>
</div>
Current display: https://i.sstatic.net/xOPsF.png
Desired display: https://i.sstatic.net/VDcoi.png