Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to definite css scrollbar style cross browser. I tested this code, it only work in IE,opera, but failed in chrome, safari and firefox.

<style type="text/css">
<!--    
body{scrollbar-face-color: #000000;
scrollbar-shadow-color: #2D2C4D;
scrollbar-highlight-color:#7D7E94;
scrollbar-3dlight-color: #7D7E94;
scrollbar-darkshadow-color: #2D2C4D;
scrollbar-track-color: #7D7E94;
scrollbar-arrow-color: #C1C1D1;
}
 -->
</style>
share|improve this question
1  
For WebKit browsers (Chrome/Safari), you can use this: stackoverflow.com/questions/7713599/… – thirtydot Oct 11 '11 at 12:00
12  
@graphicdivine, that would only be the case if they're changing the scrollbar for the overall body. There are plenty of other scrollbars that could be modified (within the webpage) where it has nothing to do with the browser chrome. – Dan Jun 26 '12 at 14:31

4 Answers

up vote 25 down vote accepted

Scrollbar CSS styles are an oddity invented by Microsoft developers. They are not part of the W3C standard for CSS and therefore most browsers just ignore them.

share|improve this answer
17  
Now also supported in Webkit though. And I think Opera supports them as well. So in fact, as of 2012, it seems 70% of the browser market share does support it (it being the styling of scrollbars, they do still use different syntax per browser to get the styling done sadly). – Stijn de Witt Jul 31 '12 at 13:43
Not supported now (on Webkit, using latest Chrome) sorry. – jmendeth Feb 1 at 18:58
1  
And now, 2013, Opera is moving to Webkit as well. Awesome! – Jimbo Feb 15 at 16:24

jScrollPane is a good solution to cross browser scrollbars and degrades nicely.

share|improve this answer
Does that only work on vertical scrollbars? – paradroid Ψ Oct 8 '12 at 7:18
1  
@paradroidΨ it also works horizontally scrolling content. – Junto Dec 3 '12 at 14:40

this link show you have to do it on Webkit broswers http://css-tricks.com/custom-scrollbars-in-webkit/

share|improve this answer

As of IE6 I believe you cannot customize the scroll bar using those properties. The Chris Coyier article linked to above goes into nice detail about the options for webkit proprietary css for customizing the scroll bar.

If you really want a cross browser solution that you can fully customize you're going to have to use some JS. Here is a link to a nice plugin for it called FaceScroll: http://www.dynamicdrive.com/dynamicindex11/facescroll/index.htm

share|improve this answer

protected by Community Feb 8 at 15:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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