ie6的高度为100%

时间:2009-07-10 09:22:03

标签: css internet-explorer-6

#loading {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
}

在ie> = 7中它完美无缺,但在ie6高度等于线高

1 个答案:

答案 0 :(得分:3)

你想要填充窗户是一块吗?然后你必须设置html和body标签的高度。

html, body {
    height: 100%
}