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 have a layout with two columns.

Left div and a right div

Right div has a Grey background color, and I need it to expand vertically depending on the height of the user's browser window. Right now the background color ends at the last piece of content in that div. I've tried height:100%, min-height:100%; etc. Doesn't seem to work.

share|improve this question
1  
May you'll find this question usefull stackoverflow.com/questions/1366548/… – Ivan Nevostruev Oct 15 '09 at 21:20
2  
and always better to provide your mark-up... – annakata Oct 15 '09 at 21:22

6 Answers

if you want to set the height of a div or any element, you should set the height of body and html to 100% too. and now you can set the height of element with 100% :). here is an example :

body,html{
  height:100%;
}

div#right{
  height:100%
}
share|improve this answer
amazing. so simple. so slippery – nurne Dec 29 '11 at 22:19
10  
This doesn't work in IE 8. – TravisK Mar 28 '12 at 20:16
3  
Correct me if I'm wrong, But i think you also need to set the height to all the parents of the div, to actually work – Dany Y Mar 28 at 11:05
This is great! I like it because it is simple, but what compatibility am I sacrificing? – bitfed May 10 at 10:47

If you're able to absolutely position your elements, position: absolute; top: 0px; bottom: 0px; would do it.

share|improve this answer
1  
This did the trick. I had a sticky footer so I accounted for the height of the header and the footer and it works great. Thanks. – agarcian Dec 28 '12 at 1:34
1  
@mike so why dont you check this answer ? – Royi Namir Feb 10 at 12:47
why this trick works? – william007 Mar 31 at 5:25

You don't mention a few important details like:

  • Is the layout fixed width?
  • Are either or both of the columns fixed width?

Here's one possibility:

<html>
<head>
  <style type="text/css">
    html, body, div { margin: 0; border: 0 none; padding: 0; }
    html, body, #wrapper, #left, #right { height: 100%; min-height: 100%; }
    #wrapper { margin: 0 auto; oveflow: hidden; width: 960px; // width optional }
    #left { background: yellow; float: left; width: 360px; // width optional but recommended }
    #right { background: grey; margin-left: 360px; // must agree with previous width }
  </style>

  <title>Example</title>
</head>
<body>
  <div id="wrapper">
    <div id="left">
      Left
    </div>

    <div id="right"></div>
  </div>
</body>
</html>

There are many variations on this depending on which columns need to be fixed and which are liquid. You can do this with absolute positioning too but I've generally found better results (particularly in terms of cross-browser) using floats instead.

share|improve this answer

Put min-height 100% and don't add any height (or put it on auto). It totally did the job for me:

.container{

    margin: auto;
    background-color: #909090;
    width: 60%;
    padding: none;
    min-height: 100%;
}

good luck with this!

share|improve this answer
this did help me. I have a container with bg img repeat-y. It looks very ugly when the container height is not enough to fill up the mobile browser window. This tip helped me. Thanks a lot – Cullen SUN Feb 27 at 11:12

try this (tested):

body{ min-height: 100%; }
#right, #left{ height: 100%; }
share|improve this answer

Even though this solution is done with Jquery I though it may be useful for anyone doing columns to fit the screen size.

For columns starting at the top of the page this solution is the most simple and works alright: (the solution posted by @Ariona)

body,html{
  height:100%;
}

div#right{
  height:100%
}

For columns that are not starting at the top of the page (for example: if they are starting below the header).

<script>
     $(document).ready(function () {
        var column_height = $("body").height();
        column_height = column_height - 100; // 100 is the header height
        column_height = column_height + "px";
        $("#column").css("height",column_height);
    });
</script>

First method applies the body height to it and the columns as well, which means that is starting_pixels + height100%.

The second method gets the height of page shown to the user by getting the height of the body and then substracts the header size to know how much height is left to display the column.

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.