Advertisement
skzcode

chngmis scrollbar

Dec 6th, 2023 (edited)
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <style>
  2.  
  3. #chngmis {
  4. height:100px;
  5. width:150px;
  6. padding:10px;
  7. border:3px;
  8. border-style:solid;
  9. border-color:#000;
  10. overflow:auto;
  11. }
  12.  
  13. #chngmis::-webkit-scrollbar {
  14. width: 8px;
  15. }
  16.  
  17. #chngmis::-webkit-scrollbar-track {
  18. background-color: #e4e4e4;
  19. -webkit-border-radius: 10px;
  20. border-radius: 10px;
  21. border: 1px solid #ccc;
  22. }
  23.  
  24. #chngmis::-webkit-scrollbar-thumb {
  25. -webkit-border-radius: 10px;
  26. border-radius: 10px;
  27. background: #e4e4e4;
  28. border: 1px solid #aaa;
  29. }
  30.  
  31. </style>
  32.  
  33. <div id="chngmis">
  34. chngmis scrollbar
  35. <br>
  36. <br>
  37. text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
  38. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement