We are working on a page that has specific requirements:
- The page should not have a scroll bar.
- The card must expand vertically to fill the remaining space, even if there is no content in the card-body.
- We need a scroll bar for the card-body only when the content is too long.
We are finding it challenging to meet all requirements without using a fixed height because it would violate the second requirement!
<!doctype html>
<html lang="en">
...
Your assistance would be greatly appreciated. Thank you!