Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've found a lot of discussions and questions littered around the internet pertaining to this question, however, none of them seem to match my case and solutions are highly specific to a certain situation.

I have a header element with a height of 100px at the top of the page. I have a div#sidebar element floated left with a width of 250px, and finally a div#main element also floated left.

The height of html, body, and div#sidebar is 100%.

My goal is to get div#sidebar to extend all the way down to the bottom of the page regardless of browser size or content size. Obviously, if the content is longer than the viewable page height it should act normally and push past the end of the page, introducing scroll bars.

However, as it stands now, it seems the page height has been calculated as 100% + 100px, introducing scrollbars even though there is no content that would push div#sidebar down. So far I have found no solutions that work, or perhaps I have missed it or messed a solution up; regardless, I've been at this for well over an hour and I'm about to rip my hair out.

Is there a non-JavaScript method of getting this to work properly to stop the header's height being added to 100%?


Here is my HTML/CSS - although I included all relevant details above, this should help.

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>My Awesome Template!</title>
        <link href="./stylesheet.css" rel="stylesheet" />
    </head>
    <body>
        <header id="primary">
            <h1>My Awesome Template!</h1>
        </header>
        <div id="sidebar">
            <h1>Sidebar</h1>
        </div>
        <div id="main">
            <h1>Main</h1>
        </div>
    </body>
</html>

CSS:

html, body
{
    margin: 0;
    padding: 0;
    height: 100%;
}

body
{
    background: #fff;
    font: 14px/1.333 sans-serif;
    color: #080000;
}

header#primary
{
    width: 100%;
    height: 100px;
    background: #313131;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4d4d4d), to(#313131));
    background-image: -moz-linear-gradient(#4d4d4d, #313131);
    background-image: -o-linear-gradient(#4d4d4d, #313131);
    background-image: linear-gradient(#4d4d4d, #313131);
}
header#primary h1
{
    margin: 0px 0px 0px 20px;
    padding: 0px;
    line-height: 100px;
    color: #ffffff;
}

#sidebar
{
    float: left;
    width: 250px;
    background: #ccc;
    min-height: 100%;
}

#main
{
    float: left;
}
share|improve this question
Could you post your html and css please? In the meantime you can have a look here: tutwow.com/htmlcss/quick-tip-css-100-height – mamoo Aug 3 '11 at 7:04
Are you sure everything is in the right position in the tree (children)? i.e- header is a child of body? – Sherif elKhatib Aug 3 '11 at 7:07
@mamoo - Edited post with HTML/CSS. – Steven Zezulak Aug 3 '11 at 7:08
make an example at jsFiddle.net please – chchrist Aug 3 '11 at 7:33
@chchrist You really can't copy/paste a couple lines of code into a local file? – Steven Zezulak Aug 3 '11 at 7:58

5 Answers

up vote 1 down vote accepted

You're looking for the infamous "faux-columns" technique. Here's a tutorial.

Basically, you can't do it with a simple background color, you have to use a repeating background image.

share|improve this answer
I was hoping to avoid this; I've been going for more minimalistic and image-free templates lately. – Steven Zezulak Aug 3 '11 at 7:56
1  
Sorry. Best as I can tell, and I've searched high and low, there's no other way. I haven't tried it, but maybe try putting in a div attached to the bottom of the column via positioning that's the same background color and containing a non-breaking space (&nbsp;) and see if that works. Let us know if it does. – Iterate Aug 3 '11 at 8:25
Without using JS there's no other "clean" way (I saw other techniques which really pollute the markup and use a lot of hacks for cross-browser compatibility, so in my opinion they're not good solutions)... – mamoo Aug 3 '11 at 8:31

If you don't care about lower IE, use display: table on a parent and display: table-cellon the elements. This should fix their heights together. As for the gap, use margin-top: -100 px; padding-top: 100px;

share|improve this answer
$(".sidebar").height(Math.max($(".content").height(),$(".sidebar").height()));

You can do that by this jquery code. Calling the main content height.

share|improve this answer
$(".left-sidebar, .right-sidebar").height(Math.max($(".content").height())); You can mix the two sidebar – John Louie Biñas Nov 6 '12 at 8:19

jQuery elegantly handles this with ease so I'm not sure why you wouldn't want to use js. Most developers that have coded more than a couple sites have spent considerable time searching for the magic answer, as I have have, and nothing compares to using js.

share|improve this answer
As I mentioned in an above comment, I've recently been interested in JavaScript and image free minimalistic templates. There's certainly nothing wrong with using JavaScript/jQuery; this was just my quest for the "magic answer" :) – Steven Zezulak Aug 4 '11 at 6:16

Not sure if you tried this, or if it will work for you (I'm new to coding), but try floating your sidebar left, float content right, both text-align to left, and use percentages for width.

#sidebar
    {
float: left;
width: 25%;
background: #ccc;
min-height: 100%;
text-align: left;
    }

#main
    {
float: right;
text-align: left;
width: 70%;
    }

If you have any other settings you will have to approach those differently but this might work.

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.