-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
  • 53,206
  • 45
  • 230
  • 366

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;
  }
Mad7Dragon
  • 1,237
  • 1
  • 10
  • 21
-2

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

TIGER
  • 2,864
  • 5
  • 35
  • 45
Jsdev
  • 1