try something like this is all i can suggest
I only really added the border tags for any debugging but it looks like it works, dunno if its exactly what you want thoughHTML Code:<html>
<head>
<style>
.container{
height:90%;
width:100%;
border: 1px solid black;
}
.footer{
height:10%;
width:100%;
border:1px solid red;
}
</style>
</head>
<body>
<div class="container">Main content..</div>
<div class="footer">Footer Content..</div>
</body>
</html>

