Ali
Ali

Reputation: 1225

webkit-scrollbar target a specific div

I am trying to hide scroll bar in chrome browser with following css style in my xyz.css file

::-webkit-scrollbar {display:none;}

would this hide scroll bar in the whole application? I just want to target a specific div

something like

#mydiv.-webkit-scrollbar {display:none;}

how can i do this?

Upvotes: 1

Views: 1634

Answers (1)

Hitech Hitesh
Hitech Hitesh

Reputation: 1635

The syntax is as given with colon

#mydiv ::-webkit-scrollbar {display:none;}

This will do it

Upvotes: 3

Related Questions