My issue is probably best explained by example. This following jsfiddle will work in Chrome:
http://jsfiddle.net/ga6g4/
As you can see, I\'ve got a fixed-hei
OK, here's the solution I ended up with if anyone is interested:
http://jsfiddle.net/vN65r/
Basically, I had to apply the following to the fixed-height header:
flex: 0 0 auto;
And the following to the variable-height, scrolling body:
flex: 0 1 auto;
I hope it helps somebody