user2871354
user2871354

Reputation: 550

How do you make a custom scroll bar?

Can anyone give a thorough explanation of how to make custom scroll bars? Are custom scroll bars compatible with all browsers?

Upvotes: 0

Views: 1767

Answers (3)

Mo.
Mo.

Reputation: 27445

You need to use pure javaScript to become compatible with all browsers.

This is one of the best solution for that

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

Upvotes: 1

D. WONG
D. WONG

Reputation: 59

::-webkit-scrollbar-track {
      background-color: #eaeaea;
      border-left: 1px solid #ccc;
}

Simply add the above.

Upvotes: 0

Related Questions