Created a simple flexbox layout with 2 rows, 1 header row, 1 main content, with second row containing 2 cols, 1 of which I wanted to stretch 100% to height of window (so it could have scrollable items) and the 2nd col sat to the right for content (again scrollable). I've set html, body
to:
height: 100%; margin: 0; overflow: hidden;
to help achieve the layout.
Everything seems fine apart from the layout pushes off the bottom of the window to the height of the header. If I remove the header no content is pushed out of view.
Is it possible to keep the header row and make the second row stay within the window?