I am using bootstrap 4.5 but this is just a quick example of what i want.
I have a card with some fixed width and height, I want content to take over all the remaining space while the button is always on the bottom. How can I achieve this?
<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>