Я сделал это, определив стиль, как показано ниже:
#header, #content, #footer {
position: absolute;
}
#header{
top: 0;
width: 100%;
height: 50px;
left: 0;
right: 0;
}
#content {
top: 50px;
left: 0;
right: 0;
bottom: 50px;
}
#footer {
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 50px;
}
Вы можете увидеть мою скрипку здесь
Спасибо @ rocky3000 и@Mika для поддержки :)