Daniel: Dreizeiliges Layout mit variabler Höhe des Contents

Beitrag lesen

Ahoi Lenzoi,

Weiß jemand, wie man soetwas anstellt?

im HTML:
<div class="header" ...>...</div>
<div class="content" ...>...</div>
<div class="footer" ...>...</div>

im CSS:
div.header
{
 height:100px;
 position:fixed;
 top:0;
}
div.content
{
 max-height:300px;
 overflow:auto;
 position:fixed;
 top:100px;
}
div.footer
{
 height:100px;
 position:fixed;
 bottom:0;
}

So in etwa.

MfG