Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi..

I want color change color of scrollbar arrow,scrollbar base color of my div scrollbar provide soln.thanx.
Posted

set the div style property to your div tag


CSS
scrollbar-base-color: white;scrollbar-arrow-color: black;scrollbar-shadow-color: white;scrollbar-lightshadow-color: white; scrollbar-darkshadow-color: white;scrollbar-highlight-color: white;scrollbar-3dlight-color: white;


i hope you get help
 
Share this answer
 
Comments
Vijay Walunj,Navi mumbai 17-Sep-12 8:12am    
very nice.its really works.
[no name] 17-Sep-12 8:14am    
thanks you its my pleasure
You should try -ms-scrollbar-arrow-color property[^] to change the color of scrollbar.
Otherwise you can use this css:
CSS
html {
    scrollbar-base-color: #9999cc;
    scrollbar-arrow-color: white;
    scrollbar-track-color: #ccccff;
    
    scrollbar-shadow-color: black;
    scrollbar-lightshadow-color: black;
    scrollbar-darkshadow-color: gray;
    
    scrollbar-highlight-color: white;
    scrollbar-3dlight-color: black;
}



--Amit
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900