Hi all
I've got a webiste that contains several div's.
One of my div's may scroll. This works in IE.
But in Firefox and Oprea i can only scroll by useing the scrollbar.
I've created a CSS what contains
body{
width: 100%;
height: 100%;
overflow: hidden;
}
#menu {
overflow: hidden;
position: absolute;
z-index: 1;
width: 134px;
height: 100%;
}
#top{
overflow: hidden;
position: absolute;
z-index: 3;
width: 100%;
height: 92px;
}
#content
{
position: absolute;
z-index: 2;
left: 180px;
top: 110px;
width: 82%;
height: 80%;
overflow: auto;
}
Can anyone tell me what i'm doing wrong?
I've got a webiste that contains several div's.
One of my div's may scroll. This works in IE.
But in Firefox and Oprea i can only scroll by useing the scrollbar.
I've created a CSS what contains
body{
width: 100%;
height: 100%;
overflow: hidden;
}
#menu {
overflow: hidden;
position: absolute;
z-index: 1;
width: 134px;
height: 100%;
}
#top{
overflow: hidden;
position: absolute;
z-index: 3;
width: 100%;
height: 92px;
}
#content
{
position: absolute;
z-index: 2;
left: 180px;
top: 110px;
width: 82%;
height: 80%;
overflow: auto;
}
Can anyone tell me what i'm doing wrong?