Reputation: 753
I can customize the scrollbar in chrome using css like this
::-webkit-scrollbar {
width: 7px;
}
However, this does not work in Firefox (version 38) and IE (version 11)
I tried the following code but to no avail.
scrollbar[orient="vertical"],
scrollbar[orient="vertical"] thumb,
scrollbar[orient="vertical"] scrollbarbutton
{
min-width: 7px !important;
max-width:7px !important;
-moz-appearance: none !important;
}
Upvotes: 1
Views: 5225
Reputation: 8194
Pretty sure there's no support in Firefox and there isn't going to be any time soon.
Your best bet would be a JQuery plugin that works across all browsers.
Malihu Custom Scrollbar
Perfect Scrollbar
Custom Scrollbar
Upvotes: 4