I am currently utilizing Bootstrap 4.5, however, the following is just a brief demonstration of my desired outcome.
Within the dimensions of a fixed-width and height card, I aim to have the content occupy all remaining space while ensuring the button stays at the bottom consistently. How can I make this happen?
<html>
<body>
<div style="width:400px; height:704px; background-color:gray;">
<div class="container" style="width:100%; height:100%;">
Some content
<button>Some Button</button>
</div>
</div>
</body>
</html>