рони,
а так? рез.шапка + футер
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style>
html, body{
height: 100%;
width : 100%;
}
body {
margin: 0;
padding: 0;
display : table;
background-color : #4cff00;
}
div {
border: 1px solid black;
display : table-row;
box-sizing: border-box;
text-align: center;
width : 100%;
}
#header, #footer{
background-color : #ffd800;
}
#content{
height : 100%;
}
</style>
</head>
<body>
<div id="header">Header<br />Header<br />Header</div>
<div id="content">Content</div>
<div id="footer">Footer<br />Footer<br />Footer</div>
</body>
</html>