Forum Moderators: not2easy

Message Too Old, No Replies

CSS layer problem

If height is longer bottom edge doesn't display

         

simes

1:06 pm on Sep 3, 2003 (gmt 0)

10+ Year Member



When I use CSS layers and the height is larger than the browser area it disappears off the edge of the screen and you can't scroll down. Anybody know why?, it isn't much of a problem but can spoil the design if I have a border all the way around the layer.

Heres the CSS:
body{
background : #999999;
color : #FFFFFF;
font : 0.8em Arial, Helvetica, sans-serif;
}

#galleries{
background : #575757;
border : thin solid #FFFFFF;
padding : 2% 2% 2%;
position : absolute;
right : 12%;
text-align : center;
top : 70px;
width : 50%;
z-index : 1;
}

#pic{
background : transparent;
left : 2%;
position : absolute;
top : 50px;
width : 369px;
}

BlobFisk

2:35 pm on Sep 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



This sounds like a documented bug in IE. Try adding <p>&nbsp;</p> at the very end of your html (just before </body>). It should clear it up.

HTH

[edited by: BlobFisk at 2:59 pm (utc) on Sep. 3, 2003]

simes

2:52 pm on Sep 3, 2003 (gmt 0)

10+ Year Member



:) thankyou