Advertisement
skzcode

no scrollbar

Dec 23rd, 2023
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <style>
  2. #noscroll {
  3. height:100px;
  4. width:150px;
  5. padding:10px;
  6. border:3px;
  7. border-style:solid;
  8. border-color:#000;
  9. overflow:auto;
  10. display:inline-block;
  11. }
  12.  
  13. #noscroll::-webkit-scrollbar {
  14. width: 0;
  15. background: transparent;
  16. }
  17. #noscroll::-webkit-scrollbar-thumb {
  18. background: transparent;
  19. }
  20. </style>
  21.  
  22. <div id="noscroll">
  23. no scrollbar
  24. <br>
  25. <br>
  26. 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
  27. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement