Forum Moderators: not2easy
I'm using the following css to position a div:
#divLeft
{
position: absolute;
left:10px;
top:50px;
width:191px;
bottom: 60px;
overflow: hidden;
border-left:solid 5px #cccccc;
}
This works perfectly in IE7 and Safari, but it IE6 doesn't appear to pay any attention to the 'bottom: 60px' line.
I need to tie the bottom of this div 60 pixels above the bottom of the window and the top 50 pixels below the top of the window. I thought of using javascript but it's going to get messy when the window starts resizing.
Can anyone help?
Thanks.