Advertisement
dracslaura

gray scrollbar

Jun 2nd, 2021
1,075
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. .scroll {
  5. width: 200px;
  6. height: 100px;
  7. overflow: scroll;
  8. overflow-x: hidden;
  9. overflow-y: scroll;
  10. }
  11. ::-webkit-scrollbar {
  12. width: 16px;
  13. height: 10px;
  14. }
  15.  
  16. ::-webkit-scrollbar-thumb {
  17. background-color: #fff;
  18. background-image: url(https://i.imgur.com/Qtm9Z60.png);
  19. border-top: 1px solid #bdbdbd;
  20. border-left: 1px solid #bdbdbd;
  21. border-right: 1px solid black;
  22. border-bottom: 1px solid black;
  23. }
  24.  
  25. ::-webkit-scrollbar-track {
  26. background-color: #fff;
  27. background-image: url(https://i.imgur.com/IGXGYKz.png);
  28. }
  29.  
  30. ::-webkit-scrollbar-button:vertical:increment {
  31. background-image: url(https://i.imgur.com/WhC8iy3.png);
  32. width: 14px;
  33. height: 16px;
  34. border-top: 1px solid #bdbdbd;
  35. border-left: 1px solid #bdbdbd;
  36. border-right: 1px solid black;
  37. border-bottom: 1px solid black;
  38. }
  39.  
  40. ::-webkit-scrollbar-button:vertical:decrement {
  41. background-image: url(https://i.imgur.com/fQ18mrR.png);
  42. border-top: 1px solid #bdbdbd;
  43. border-left: 1px solid #bdbdbd;
  44. border-right: 1px solid black;
  45. border-bottom: 1px solid black;
  46. width: 14px;
  47. height: 16px;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <div class="scroll">Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. Some text to enable scrolling.. </div><!---text here! you can cut this off if you have crd pro plus ^^ --->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement