11

Is it possible to create a custom scrollbar for Mozilla Firefox with CSS?

I found some articles which tells it was supported in past (e.g. http://codemug.com/html/custom-scrollbars-using-css/).

Are there more examples?

Just a student
  • 10,560
  • 2
  • 41
  • 69
dabraham
  • 443
  • 2
  • 5
  • 7
  • 2
    The only viable solution for custom scrollbars across multiple browsers is Javascript, I usually use and recommend this plugin: http://manos.malihu.gr/jquery-custom-content-scroller/ – Frisbetarian-Support Palestine Aug 25 '14 at 07:13
  • BEST SOLUTION https://addons.mozilla.org/en-US/firefox/addon/noiascrollbars/ Here is the best sollution – Florin Sep 23 '15 at 18:47
  • I would like to recommend [`fakescroll`](https://github.com/yairEO/fakescroll) which is a vanilla-js tiny script for custom scrollbars – vsync Jul 05 '18 at 09:34
  • Starting from Firefox 64 you can use the `scrollbar-color` property: https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-color – biziclop Dec 14 '18 at 18:58

1 Answers1

18

On this side the firefox scollbar is cancelled.

http://codemug.com/html/custom-scrollbars-using-css/

But look here:

http://jscrollpane.kelvinluck.com

http://hesido.com/web.php?page=customscrollbar

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

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

These are plugins that work for all browsers.

Plugin only for firefox: https://addons.mozilla.org/de/firefox/addon/noiascrollbars/

I hope I could help you!

linuscl
  • 773
  • 7
  • 20
  • 1
    This is the best answer I have come across on this issue. @dabraham, consider accepting this answer. http://manos.malihu.gr/jquery-custom-content-scroller is perfect: at least for me. All other solutions I explored from google results came with many tiny issues. – shekeine Oct 25 '14 at 08:23
  • 1
    these are all javascript solutions, and not css as requested – alwe Sep 29 '16 at 12:03
  • @alwe It is NOT possible with css for Mozilla Firefox: https://bugzilla.mozilla.org/show_bug.cgi?id=77790 – linuscl Sep 29 '16 at 13:52