CSS即100%高度

时间:2011-02-10 06:43:22

标签: html css internet-explorer height

为什么height:100%无效 IE 。我们怎样才能解决这个问题。

2 个答案:

答案 0 :(得分:7)

尝试

* html .class{ height:100% }

答案 1 :(得分:2)

您必须为所有父母设置身高:100%。试试这个(它有效):

`<html><body style="height:100%;"><div style="height:100%;background-color:red">Here it is!</div></body></html>`