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.

Why does height:100% not work in IE. How can we get around this.

share|improve this question

2 Answers

up vote 4 down vote accepted

try

* html .class{ height:100% }
share|improve this answer

You have to set height:100% to all the parents up to body. Try this (it works):

`<html><body style="height:100%;"><div style="height:100%;background-color:red">Here it is!</div></body></html>`
share|improve this answer
jsfiddle.net/AdnQ5 doesn't look like it works to me. – Mark Feb 10 '11 at 7:49
2  
does not work.. – dan Feb 10 '11 at 7:53
which IE version? – Roman Asanov Feb 10 '11 at 15:07
1  
"to all the parents up to body" - tried with html too, now it works :-) jsfiddle.net/k7ScE – Bojangles Mar 12 '11 at 7:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.