I am trying to create a layout that includes content and a footer using flexbox.
The goal is to have the content fill up any remaining space, while the footer remains a fixed height of 60px. What would be the most effective approach to achieve this?
<div class="container"> // 100% height
<div class="one"></div> // Fill remaining height
<div class="two"></div> // 60px in height
</div>
For reference, you can check out a basic example on this Jsfiddle link.