Advertisement
dianakko

invisible scrollbar code

Oct 20th, 2021
647
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. <style>
  2. div {
  3. -ms-overflow-style: none; /* for Internet Explorer, Edge */
  4. scrollbar-width: none; /* for Firefox */
  5. overflow-y: scroll;
  6. height: 200px;
  7. border: 1px solid black;
  8. }
  9.  
  10. div::-webkit-scrollbar {
  11. display: none; /* for Chrome, Safari, and Opera */
  12. }
  13.  
  14. </style>
  15.  
  16.  
  17. <div>
  18. This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).
  19. This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).
  20. This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).
  21. This example will hide the scrollbars (and the functionality - it is not possible to scroll inside the page).
  22. </div>
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement