Advertisement
morishige

no scrollbar

Feb 6th, 2022
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. // can also be achieved on pro standard by copying the following into an embed and changing element id:
  2.  
  3. <style>
  4. #yourid {
  5. width: 9em;
  6. height: 6em;
  7. z-index: 50;
  8. font-family: Arial;
  9. -ms-overflow-style: none;
  10. scrollbar-width: none;
  11. overflow-y: scroll;
  12. }
  13. #yourid::-webkit-scrollbar {
  14. display: none;
  15. }
  16.  
  17. #yourid {
  18. -ms-overflow-style: none;
  19. scrollbar-width: none;
  20. }
  21. </style>
  22. <div id="yourid">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 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 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</div>
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement