Reputation: 1225
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
Reputation: 1635
The syntax is as given with colon
#mydiv ::-webkit-scrollbar {display:none;}
This will do it
Upvotes: 3