I have an app with many
<div class="container">
<div class="header"></div>
<div class="content"></div>
</div>
like here : http://jsfiddle.net/pceof476/
I can't manage to achieve what I want without having to add calc(100% - headerSize)
. Since my header can change size, a calculation set in hard would break it when I resize it.
Also I would like my 2 header to be always visible.
something like this http://jsfiddle.net/acs641g5/ but with a scrollbar of the content.