Hi guys
How can I make a div vertically and horizontally expand to the maximum size of its container and also have scrollbars displayed when the container is scaled down?
The following works perfectly on IE but ...
On FF : the scoll bars aren't displayed at all.
On Opera : the scroll bars are displayed but the div expands outside its container (weird!).
Thanks !
How can I make a div vertically and horizontally expand to the maximum size of its container and also have scrollbars displayed when the container is scaled down?
The following works perfectly on IE but ...
On FF : the scoll bars aren't displayed at all.
On Opera : the scroll bars are displayed but the div expands outside its container (weird!).
Code:
#cust-bloc-main {
width: 100%;
height: 100%;
overflow: auto;
}
Thanks !