#loading {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
in ie >= 7 it’s works perfectly, but in ie6 height equal line height
#loading {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
in ie >= 7 it’s works perfectly, but in ie6 height equal line height
Is it a block you want to fill the window? Then you have to set the height of the html and body tag too.
html, body {
height: 100%
}