View Single Post
  #1 (permalink)  
Old 10-23-06, 12:35 PM
hinch hinch is offline
Wannabe Coder
 
Join Date: Oct 2004
Posts: 133
Thanks: 0
Thanked 0 Times in 0 Posts
Angry div 100% height in IE

hey there,

in testing my site in IE7 i noticed that my shadow on the right of my page does not stretch like it does in Firefox or Safari or IE. Mac or Seamonkey...

this is my code:
Code:
#shadow{
width: 15px;
background-image:url(template/shade.png);
background-position:right;
background-repeat:repeat-y;
min-height:100%;
margin-bottom:-50px;
height: auto;
position: absolute;
top: 0px;
left: 95%;
}
is there a hack or way around this? i also have another question...

when the page requires scrolling down, the shadow reveals itself to only be the height of the browser. without resorting to using a table, can i stretch the div the entire length to the bottom every time? perhaps covering both my issues

cheers.

Last edited by nico_swd; 10-23-06 at 12:53 PM. Reason: Please use [code] wrappers when posting code.
Reply With Quote