I'm looking for resolution to my CSS problem. This is Drupal theme, so the content will have different height. I've got footer fixed on the bottom and structure as follow
<body>
<div class="page-container">
<div class="header">
</div>
<div class="content-container">
<div class="content-insider">
Different kind of content here
</div>
</div>
</div>
<div class="footer">
</div>
</body>
I need both the height of content-container and content-insider to be at least height of the browser window and at the same time the height of content inside. It's the background that needs to be expanded all the way to the bottom. I've tried some solutions (also from stackoverflow) but they work only if content is shorter than browser height. If there is more content, and you scroll down, the content-insider cuts off before reaching bottom of the browser.