-1

Hide scrollbar but still scrollable in CSS

i try ::-webkit-scrollbar { display: none; } this is working only Google Chrome but i want all browser

so please help me?

Raptor
  • 51,208
  • 43
  • 217
  • 353

2 Answers2

0

I tried this on Firefox, Chrome, and Opera using CSS only. All work fine with it.

* {

    /* hide scrollbar for firefox */
    scrollbar-width: none;
}

/* hide scroll bar for chrome and opera */
::-webkit-scrollbar {
    display: none;
    width: 0px;
  }
-2

*::-webkit-scrollbar { width: 0px; }

TIGER
  • 2,755
  • 4
  • 32
  • 43
Jsdev
  • 1