Para firefox y el resto es facilito, pero el puñetero IE6...
Cita: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>MAKERS - ADMINISTRACION</title>
<style media="screen">
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow:hidden;
}
#container-page {
width: 100%;
height: 100%;
background: #DDD;
position: relative;
}
#container-header {
width: 100%;
background: #CCC;
position: absolute;
top:0;
height:130px;
}
#container-content {
width: 100%;
overflow: auto;
position: absolute;
top: 130px;
bottom: 40px;
}
#container-foot {
width: 100%;
background: #CCC;
position: absolute;
bottom: 0;
height: 40px;
}
</style>
</head>
<body>
<div id="container-page">
<div id="container-header"></div>
<div id="container-content">
</div>
<div id="container-foot">Foot</div>
</div>
</body>
</html>