CSS 100% height in ie [duplicate]
Why does height:100%
not work in IE. How can we get around this.
try
* html .class{ height:100% }
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>`
精彩评论