rundellt2000
05-02-2003, 12:33 AM
Is there a code for colored scrollbar in a div?
A DIV that is not a PAGE.
A DIV that is not a PAGE.
|
View Full Version : Coloured Scrollbar in DIV rundellt2000 05-02-2003, 12:33 AM Is there a code for colored scrollbar in a div? A DIV that is not a PAGE. Alcy 05-02-2003, 12:43 AM <style type="text/css"> #NAME { scrollbar-base-color:#FFFFFF; } </style> <div id="NAME"> </div> Or.... <div style="scrollbar-base-color:#FFFFFF;"> </div> rundellt2000 05-02-2003, 03:36 AM i will go for the css one... chichy 11-01-2003, 05:34 AM Thanks Alcy, the code helped me too :D! aviegrace 11-01-2003, 09:41 AM <div style="position: absolute; top: 90px; width: 160; height: 140; overflow: auto; left: 170px; background-image:none; border-color:#000000; border-style: solid; border-top-width: 0px; background-attachment: fixed; border-right-width: 0px; border-left-width: 0px; border-bottom-width: 0px; SCROLLBAR-FACE-COLOR: #CDCAA7; SCROLLBAR-HIGHLIGHT-COLOR:#000000; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR: #000000; SCROLLBAR-TRACK-COLOR: #FFFFFF; SCROLLBAR-DARKSHADOW-COLOR: #FFFFFF; SCROLLBAR-BASE-COLOR: #FFFFFF"> CONTENT </div> |