dollcrds

hidden scrollbar

Mar 3rd, 2024
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <style>
  2. html {
  3. overflow: scroll;
  4. overflow-x: hidden;
  5. }
  6. ::-webkit-scrollbar {
  7. width: 0; /* remove scrollbar space */
  8. background: transparent; /* to make scrollbar invisible */
  9. }
  10. ::-webkit-scrollbar-thumb {
  11. background: transparent;
  12. }
  13. </style>
Add Comment
Please, Sign In to add comment