In the markup shown below, I'm trying to get the content div to stretch all the way to the bottom of the page but it's only stretching if there's content to display. The reason I want to do this is so the vertical border still appears down the page even if there isn't any content to display.

Here is my code

<body>
    <form id="form1">
    <div id="header">
        <a title="Home" href="index.html" />
    </div>

    <div id="menuwrapper">
        <div id="menu">
        </div>
    </div>

    <div id="content">
    </div>

and my CSS

body {
    font-family: Trebuchet MS, Verdana, MS Sans Serif;
    font-size:0.9em;
    margin:0;
    padding:0;
}

div#header
{
    width: 100%;
    height: 100px;
}
#header a
{
    background-position: 100px 30px;
    background: transparent url(site-style-images/sitelogo.jpg) no-repeat fixed 100px 30px;
    height: 80px;
    display: block;
}

#header, #menuwrapper    {
    background-repeat: repeat;
    background-image: url(site-style-images/darkblue_background_color.jpg);
}

#menu #menuwrapper  {
    height:25px;
}

div#menuwrapper {
    width:100%
}

#menu, #content {
    width:1024px;
    margin: 0 auto;
}

div#menu    {
    height: 25px;
    background-color:#50657a;
}

Thanks for taking a look.

link|improve this question

What do you want it to do if there is more content then can fit on the page? What browsers do you care about? – drs9222 Jul 25 '09 at 23:49
feedback

14 Answers

up vote 24 down vote accepted

Your problem is not that the div is not at 100% height, but that the container around it is not.This will help in the browser I suspect you are using:

html,body { height:100%; }

You may need to adjust padding and margins as well, but this will get you 90% of the way there.If you need to make it work with all browsers you will have to mess around with it a bit.

This site has some excellent examples:

http://www.brunildo.org/test/html_body_0.html
http://www.brunildo.org/test/html_body_11b.html
http://www.brunildo.org/test/index.html

I also recommend going to http://quirksmode.org/

-Jason

link|improve this answer
1  
This solution isn't friendly to pages that scroll. – Treebranch Jul 12 '11 at 18:01
min-height property in CSS should help him out... I guess – Alfabravo Dec 2 '11 at 21:21
feedback

Try Faux Columns

link|improve this answer
feedback

Try playing around with the following css rule ...

#content {
min-height: 600px;
height: auto !important;
height: 600px;
}

Change the height to suit your page. height is mentioned twice because of cross browser compatibility.

link|improve this answer
feedback

Try Ryan Fait's "Sticky Footer" solution,

http://ryanfait.com/sticky-footer/
http://ryanfait.com/resources/footer-stick-to-bottom-of-page/

Works across IE, Firefox, Chrome, Safari and supposedly Opera too, but haven't tested that. It's a great solution. Very easy and reliable to implement.

link|improve this answer
feedback

you can kinda hack it with the min-height declaration

<div style="min-height: 100%">stuff</div>
link|improve this answer
feedback

The min-height property is not supported by all browsers. If you need your #content to extend it's height on longer pages the height property will cut it short.

It's a bit of a hack but you could add an empty div with a width of 1px and height of e.g. 1000px inside your #content div. That will force the content to be at least 1000px high and still allow longer content to extend the height when needed

link|improve this answer
feedback

While it isn't as elegant as pure CSS, a small bit of javascript can help accomplish this:

<html>
<head>
<style type='text/css'>
    div {
        border: 1px solid #000000;
    } 
</style>
<script type='text/javascript'>

    function expandToWindow(element) {
         var margin = 10; 

         if (element.style.height < window.innerHeight) { 
            element.style.height = window.innerHeight - (2 * margin) 
         }
    }


</script>
</head>
<body onload='expandToWindow(document.getElementById("content"));'>
<div id='content'>Hello World</div>
</body>
</html>
link|improve this answer
feedback

Also you might like this: http://matthewjamestaylor.com/blog/ultimate-2-column-left-menu-pixels.htm

It isn't quite what you asked for, but it might also suit your needs.

link|improve this answer
feedback

I dont have the code, but I know I did this once using a combination of height:1000px and margin-bottom: -1000px; Try that.

link|improve this answer
feedback

Depending on how your layout works, you might get away with setting the background on the <html> element, which is always at least the height of the viewport.

link|improve this answer
feedback

It is not possible to accomplish this using only stylesheets (CSS). Some browsers will not accept

height: 100%;

as a higher value than the viewpoint of the browser window.

Javascript is the easiest cross browser solution, though as mentioned, not a clean or beautiful one.

link|improve this answer
feedback

I know this is not the best method, but I couldnt figure it out without messing my header, menu, etc positions. So.... I used a table for those two colums. It was a QUICK fix. No JS needed ;)

link|improve this answer
feedback

change your css to:

#menu, #content {
    position:absolute;
    top:125px;
    bottom:0px;
    width:1024px;
    margin: 0 auto;
}
link|improve this answer
feedback

Try

html, body {height: 102%;}

.wrapper {
    position: relative;
    height: 100%;
    width: 100%;}

.div {
    position: absolute;
    top: 0;
        bottom: 0;
    width: 1000px;
    min-height: 100%;}

Haven't tested it yet...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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