Tim
Tim

Reputation: 2649

Custom styled scrollbar for overflow areas using CSS

What is the most effective way to have scrollbars on a website to a custom style using CSS?

I'm talking about scrollbars within a DIV with overflow: scroll; set and not on the browser window maybe using a JPG as the scrollbar design.

Hope this explains what I'm trying to achieve.

Thanks

Upvotes: 1

Views: 4323

Answers (2)

kumiau
kumiau

Reputation: 724

The scrollbar is a component of the OS, so the browser doesn't give you any liberty for styling it. The best alternative is using Javascript, there are some good libraries for custom scrollbars, Tiny Scrollbar, for example.

Upvotes: 3

Related Questions