This HTML structure has div#page
in which the contents of the current page will be loaded via Ajax. Content always consists of tags section
that can have a dynamic height (in percent relative to the browser) or static height (in pixels).
The height div#page
should be adjusted, so it footer
will follow immediately after the last div#page > section
.
To be able to set a percentage value for tags div#page > section
, however, I gave a div#page
height of 100%. Therefore, the height of the DOM is not stretched.
If the tag footer
was inside div#page
, it would work. This is not a good solution for me, because the footer will be overwritten dynamically with the loaded page content.
Is there any magic CSS solution to stretch div#page
correctly?
body, html { margin: 0; padding: 0; }
#outer { background: red; position: absolute; width: 100%; height: 100%; }
#page { height: 100%; }
#page > section { background: #666; width: 100%; }
#page > section:nth-of-type(2n) { background: #333; }
#page > section:nth-of-type(1) { height: 100%; }
#page > section:nth-of-type(2) { height: 160px; }
#page > section:nth-of-type(3) { height: 220px; }
#page > section:nth-of-type(4) { height: 120px; }
footer { background: green; height: 160px; }
<div id="outer">
<div id="page">
<section>Full height.</section>
<section>Static height 1.</section>
<section>Static height 2.</section>
<section>Static height 3.</section>
</div>
<footer>
Immediately after static height 3.
</footer>
</div>
Run codeHide result
source
share