change scrollbar color using css


/ Published in: CSS
Save to your folder(s)

this code is used to change the scroll bar color change


Copy this code and paste it in your HTML
  1. <style type="text/css">
  2.  
  3. html, body{
  4. scrollbar-face-color:#EBF5FF;
  5. scrollbar-base-color:#EBF5FF;
  6. scrollbar-arrow-color:black;
  7. scrollbar-track-color:#F3F3F3;
  8. scrollbar-shadow-color:#EBF5FF;
  9. scrollbar-highlight-color:#EBF5FF;
  10. scrollbar-3dlight-color:#78AAFF;
  11. scrollbar-darkshadow-Color:#78AAFF;
  12. }
  13.  
  14. </style>

URL: http://www.dynamicdrive.com/style/csslibrary/item/custom-scrollbar-colors/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.