cindie

Custom Scrollbar

Nov 5th, 2011
4,573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ::-webkit-scrollbar-thumb:vertical {
  2. background-color:#ffffff; /*scrollbar's slider color*/
  3. background-image:url('URL HERE'); /*optional background image*/
  4. height:100px;
  5. -moz-border-radius: 15px; /*these make bar rounded*/
  6. border-radius: 15px;
  7. }
  8.  
  9. ::-webkit-scrollbar-thumb:horizontal {
  10. background-color:#ffffff; /*scrollbar's slider color*/
  11. height:100px !important;
  12. }
  13.  
  14. ::-webkit-scrollbar {
  15. height:10px;
  16. width:5px; /*width of slider*/
  17. background-color:#eeeeee; /*scrollbar's main color*/
  18. background-image:url('URL HERE'); /*optional background image*/
  19. }
Advertisement
Add Comment
Please, Sign In to add comment