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 checked a lot of other questions similar to this, but it seems no solution works. I have a website that has a body, then an inner div called content. I have tried:

body
{
    height: 100%;
}

content
{
    height: 100%;
}

AND

body
{
}

content
{
    position: absolute;
    top: 0px;
    bottom: 0px;
}

which were the answers to most of the questions. but for some reason it is not working for us. When we do the forcing with the absolute positioning, it stretches to more than the page length and also pushes our content to the left when we want it centered (using margin-left: auto; margin-right:auto;)

Any suggestions?

share|improve this question
1  
Number one would be that content isn't an element. That either needs to be an id: #content, or a class: .content. But there's probably more going on. – Doozer Blake Oct 17 '11 at 21:57
It was a #content. I just didn't notate that in the question. Sorry for the confusion! I should have done that – pongahead Oct 17 '11 at 22:03

2 Answers

up vote 3 down vote accepted

You need to set html to 100% height in addition to body, and your div, e.g.

html, body, div{
   height: 100%;
}
share|improve this answer
I had forgotten that there was an html tag to style. Thanks! – pongahead Oct 19 '11 at 19:18

My solution:

<html>
<head>
<style>
body
{
    height: 100%;
    padding: 0;
    margin: 0;
}

#content
{
    height: 100%;
    background: red;
}
</style>
</head>
<body>
    <div id="content"></div>
</body>
</html>

Works fine. Attribute background: red; is for testing.

share|improve this answer
I had already tried that and it didn't work. The solution above was I forgot to set HTML to 100% as well. – pongahead Oct 17 '11 at 22:02

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.