0

This is my CSS for the custom style scroll-bar its works fine in chrome but not in Firefox browser.

how to make this CSS compatible in Firefox browser

 <style>
    .scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    }
    .scroll::-webkit-scrollbar {
    height: 6px;
    background-color: #F5F5F5;
    }
    .scroll::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius:10px;
    }
</style>
PravinS
  • 2,640
  • 3
  • 21
  • 25
Preetam
  • 19
  • 7

1 Answers1

0

Firefox scollbar style customization doesn’t work any more.

But you can try plugins that works in all browser.

Jscrollpane

Hesido

http://script-tutorials.com/custom-scrollbars-cross-browser-solution

http://manos.malihu.gr/jquery-custom-content-scroller

And also you can try below plugin only for firefox.

Noiascrollbars

hope this information helps you.

GAMITG
  • 3,810
  • 7
  • 32
  • 51