|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
hello,
don't mozilla (or netscape, both the latest versions) support scroller created in CSS ?? The below code works fine in Internet Explorer but in Mozilla there is no scroller shown. .... Code:
<div style="width:100%; height:430; overflow-y:auto; overflow-x:auto; border:1px dashed black; text-align:justify; background-color:white;"> // contents ... </div> Comments on alternative solutions to above code...??..anybody? ![]() |
|
#2
|
||||
|
||||
|
The css properties overflow-x and overflow-y arn't standard and don't exist. What you want is just overflow: auto;
<div style="width:100%; height:430; overflow:auto; border:1px dashed black; text-align:justify; background-color:white;">
__________________
Spidermonkey Tutorial http://www.aoeex.com/gmap.php - Put yourself on the map (Now Updated!) |
![]() |
| Viewing: Dev Shed Forums > Web Design > CSS Help > CSS scroller don't work in Mozilla !! WHY?? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|