How do you make a custom scroll bar?

2019-08-31 12:27发布

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

3条回答
走好不送
2楼-- · 2019-08-31 12:40
::-webkit-scrollbar-track {
      background-color: #eaeaea;
      border-left: 1px solid #ccc;
}

Simply add the above.

查看更多
看我几分像从前
3楼-- · 2019-08-31 12:54

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/

查看更多
登录 后发表回答