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.

Try this:

html, body {
    height: 100%;
}

#container {
    float: left;
    width: 50px;
    height: 100%;
}

You get container to use all height, but if you resize the window to 50% for example and reload the page, and once is loaded you resize the window to use the whole size the extra space is not used by #container (in this case will be using 50% of the total window size).

What's the best way to fix this and if posible using only css?

share|improve this question
2  
Use position: absolute; instead of the float. Can't think of anything else if we got no source. – Niels Nov 16 '11 at 17:19

1 Answer

up vote 0 down vote accepted

It is supposed to work :

http://jsfiddle.net/AhFnS/

Maybe you have an element containing your #container

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.