Advertisement
thoushallnotcry

Hide Scrollbar

Jan 24th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. You can put either provided code where you want to hide the scrollbar. body { is just an example and does not necessarily need to be in the body portion of your CSS.
  2. --------------------------------------------------------
  3. /*Edge no scrollbar*/
  4. body {
  5. -ms-overflow-style: none !important;
  6. }
  7.  
  8. /*Foxfire no scrollbar*/
  9. body {
  10. scrollbar-width: none !important;
  11. }
  12. ---------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement