Custom Scroll Bar for Div with pure CSS [duplicate

2019-07-13 11:53发布

This question already has an answer here:

Is there a way to customize a scrollbar with only CSS that effects a specific div and not everything in the entire page?

I have found that I can use ::-webkit-scrollbar In order to change the style of a scrollbar, but this affects every scrollbar on the page.

I'm looking for a purely CSS way of styling a specific scroll bar on the page.

Is this possible?

1条回答
放荡不羁爱自由
2楼-- · 2019-07-13 12:17

It certainly is. All you have to do is keep in mind that ::-webkit-scrollbar is a pseudo-class, and as such, can be used like this:

div.foo::-webkit-scrollbar { ... }
查看更多
登录 后发表回答