I am currently encountering an issue with the alignment of the 'card-footer' class in Bootstrap 4 cards, as it is not aligning properly at the bottom of the page.
If you would like to see the problem for yourself, here is the link to the JS Fiddle.
<div class="container">
<div class="card text-center">
<div class="card-header">Featured</div>
<div class="card-body">
<h5 class="card-title">Special title treatment</h5>
<p class="card-text">The text within this card should maintain equal distance from the header and footer.</p>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam
sapien sem, ornare ac, nonummy non, lobortis a enim. Nam sed
tellus id magna elementum tincidunt. Pellentesque habitant morbi
tristique senectus et netus et malesuada fames ac turpis egestas.
Aliquam ornare wisi eu metus. In enim a arcu imperdiet malesuada.
Nam quis nulla. Vivamus luctus egestas leo.
</p>
</div>
<div class="card-footer text-muted">
The aim is for this footer to be positioned at the very bottom
</div>
</div>
</div>