Why doesn't overflow property for DIV element work in IE5.5?
I have a simple CSS class as follows:
.scrollableDiv {
overflow: auto;
}
<DIV CLASS="scrollableDiv">Large large text....</DIV>
Above doesn't work IE5.5. According to MSDN documentation it works from IE4.0 on
32bit windows platforms. I personally tested it with IE5.0 on Win NT 4
Workstation and it worked.
Now i upgraded to Windows 2000 Professional and IE 5.5 and it does not?
Anybody come accross the solution for this one?
Thanks,
Alex
"Alex Stankovic" <astan...@programmer.net> wrote...
Thanks for your reply,
Alex
-----Original Message-----
Wouldn't overflow: auto; do nothing??
[
http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/overflo
w.asp ]
"Alex Stankovic" <astan...@programmer.net> wrote...
Hi,
Why doesn't overflow property for DIV element work in IE5.5?
I have a simple CSS class as follows:
..scrollableDiv {
overflow: auto;
}
<DIV CLASS="scrollableDiv">Large large text....</DIV>
Above doesn't work IE5.5. According to MSDN documentation it works from
IE4.0 on
32bit windows platforms. I personally tested it with IE5.0 on Win NT 4
Workstation and it worked.
Now i upgraded to Windows 2000 Professional and IE 5.5 and it does not?
Anybody come accross the solution for this one?
Thanks,
Alex
.
.scrollableDiv
{
overflow: auto;
width:100px;
height:50px;
}
/Jose Jeria
"Alex Stankovic" <astan...@programmer.net> wrote in message
news:657b01c0f462$fb515e40$a4e62ecf@tkmsftngxa06...