Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to custom-style a scrollbar with CSS.

I use this WebKit CSS code, which works well for Safari and Chrome:

::-webkit-scrollbar {
width: 15px;
height: 15px;
}


::-webkit-scrollbar-track-piece  {
background-color: #C2D2E4;
}

::-webkit-scrollbar-thumb:vertical {
height: 30px;
background-color: #0A4C95;
}

How can I do the same thing for Firefox?

(I know I can easily do it using jQuery, but I would prefer to do it with CSS if it's doable.)

Would be grateful for somebody's expert advice!

share|improve this question
1  
Please share how you can do it using jQuery. I'm faced with the same problem but used CSS to fix it for Webkit. However, Firefox poses a problem that your jQuery solution may be able to help with. – Yasky Jun 9 '12 at 3:37
I recommend using jscrollpane jQuery plugin. – Figaro Jul 26 '12 at 12:58
There is an issue with jScrollPane in Firefox. jScrollPane works perfectly in Chrome but in Firefox you have an empty system scrollbar to the right of the jScrollPane scrollbar. There should only be one scrollbar – Yasky Jul 26 '12 at 15:33
Not true. If you have that, you did something wrong somewhere. – Figaro Aug 19 '12 at 10:05

1 Answer

up vote 44 down vote accepted

There's no Gecko equivalent to ::-webkit-scrollbar and friends.

You'll have to stick with jQuery.

Plenty of people would like this feature, see: https://bugzilla.mozilla.org/show_bug.cgi?id=77790

This report is asking for the exact same thing you're asking for: https://bugzilla.mozilla.org/show_bug.cgi?id=547260

It was closed as a duplicate of the first report I linked to.

share|improve this answer
Thank you, ThirtyDot. One question though: what about -moz-appearance:scrollbartrack-vertical - and other related CSS extensions? Perhaps they can be used in some way? – Figaro May 29 '11 at 2:01
No. Unfortunately, none of the possible values for -moz-appearance can help. "The -moz-appearance CSS property is used in Gecko (Firefox) to display an element using a platform-native styling based on the operating system's theme." - you'll just get a native scrollbar. – thirtydot May 29 '11 at 2:04
Got it. Thank you! – Figaro May 29 '11 at 2:06
9  
Just in case anyone reading this needs a practical solution, I ended up using jscrollpane jQuery plugin. – Figaro Jun 2 '11 at 15:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.