mixue

hide scrollbar

Jul 2nd, 2022 (edited)
7,089
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 1 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; /* Optional: just make scrollbar invisible */
  9. }
  10. /* Optional: show position indicator in red */
  11. ::-webkit-scrollbar-thumb {
  12. background: #FF0000;
  13. }
  14. </style>
Add Comment
Please, Sign In to add comment