Advertisement
dollzito

scrollbar style (cr chngmis)

Jun 2nd, 2022 (edited)
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <style>
  2. /* Scrollbar Styling */
  3. ::-webkit-scrollbar {
  4. width: 8px;
  5. }
  6.  
  7. ::-webkit-scrollbar-track {
  8. background-color: #e4e4e4;
  9. -webkit-border-radius: 10px;
  10. border-radius: 10px;
  11. border: 1px solid #ccc;
  12. }
  13.  
  14. ::-webkit-scrollbar-thumb {
  15. -webkit-border-radius: 10px;
  16. border-radius: 10px;
  17. background: #e4e4e4;
  18. border: 1px solid #aaa;
  19. }
  20. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement