Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best way to make an element of 100% minimum height across a wide range of browsers ? In particular if you have a layout with a header and footer of fixed height how do you make the middle content part fill 100% of the space in between with the footer fixed to the bottom ?

share|improve this question
1  
please accept ollifant's, best by far – wlf Nov 28 '12 at 12:10

10 Answers

I am using the following one: CSS Layout - 100 % height

Works fine for me...

share|improve this answer
On that example tried in IE7 to increase font size (Ctrl + "+") and that ruined sticky footer :( – Vitaly Mar 3 '10 at 20:23
Thank you so much for the link! I have been looking everywhere for this! – samoz Jul 6 '10 at 2:36
this one doesn't seem to work in IE9... does it work in other IEs? – William Niu Jul 5 '11 at 6:50
1  
While this layout works in the example, it carries a lot of deep issues that cannot simply be solved this way. – mystrdat Sep 18 '12 at 10:33
6  
mystrdat if you don't mention any of the issues your comment is completely useless. – wlf Nov 28 '12 at 12:06

kleolb02's answer looks pretty good. another way would be a combination of the sticky footer and the min-height hack

share|improve this answer

To set a custom height locked to somewhere:

CSS---------------

body,html{
height:100%;}
#outerbox{
    width:100%;
    position:absolute;   /* to place it somewhere on the screen */
    top:130px;           /* free space at top */
    bottom:0px;}         /* makes it lock to the bottom */
#innerbox{
    width:100%;
    position:absolute;              
    min-height:100%; !important /* browser fill */
    height:auto;}        /*content fill */

HTML--------------

<div id="outerbox">
     <div id="innerbox"></div>
</div>
share|improve this answer
This solution works in IE8+ – Albert Fajardo May 11 at 22:14

A pure CSS soultion ( #content { min-height: 100%; } ) will work in a lot of cases, but not in all of them - especially IE6 and 7. Unfortunately, you will need to resort to a javascript solution in order to get desired behavior - this can be done by calculating the desired height for your content div and setting it as a CSS property in a function:

function resizeContent() {
  var contentDiv = document.getElementById('content');
  var headerDiv = document.getElementById('header');
  // This may need to be done differently on IE than FF, but you get the idea.
  var viewPortHeight = window.innerHeight - headerDiv.clientHeight;
  contentDiv.style.height = 
    Math.max(viewportHeight, contentDiv.clientHeight) + 'px':
}

You can then set this function as a handler for onLoad and onResize events:

<body onload="resizeContent()" onResize="resizeContent()">
  . . .
</body>
share|improve this answer

I agree with Levik as the parent container is set to 100% if you have sidebars and want them to fill the space to meet up with the footer you cannot set them to 100% because they will be 100 percent of the parent height as well which means that the footer ends up getting pushed down when using the clear function.

Think of it this way if your header is say 50px height and your footer is 50px height and the content is just autofitted to the remaining space say 100px for example and the page container is 100% of this value its height will be 200px. Then when you set the sidebar height to 100% it is then 200px even though it is supposed to fit snug in between the header and footer. Instead it ends up being 50px + 200px + 50px so the page is now 300px because the sidebars are set to the same height as the page container. There will be a big white space in the contents of the page.

I am using internet Explorer 9 and this is what I am getting as the effect when using this 100% method. I havent tried it in other browsers and I assume that it may work in some of the other options. but it will not be universal.

share|improve this answer

Try this:

body{ height: 100%; }
#content { 
    min-height: 500px;
    height: 100%;
}
#footer {
    height: 100px;
    clear: both !important;
}

The div element bellow the content div must have clear:both.

share|improve this answer

First you should create a div with id='footer' after your content div and then simply do this.

Your HTML should look like this:

<html>
    <body>
        <div id="content">
            ...
        </div>
        <div id="footer"></div>
    </body>
</html>

And the CSS:

​html, body {
    height: 100%;   
}
#content {
    height: 100%;
}
#footer {
    clear: both;        
}
share|improve this answer

You can try this: http://www.monkey-business.biz/88/horizontal-zentriertes-100-hohe-css-layout/ That's 100% height and horizontal center.

share|improve this answer
2  
Looks really weird in IE7. Footer is shifted to the right. – Vitaly Mar 3 '10 at 21:02

just share what i've been used, and works nicely

#content{
        height: auto;
        min-height:350px;
}
share|improve this answer

For dynamic layout you use min-height in css,this code cause your layout is dynamic

#YourId{
   min-height:650px;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.