Reputation: 13681
I know in webkit
it is possible to style the scroll bar using the ::-webkit-scrollbar
properties but is it possible to have lines on the scroll bar? If so how?
In chrome when you hit Ctrl + F and type something lines appear on the scroll bar.
Upvotes: 4
Views: 1129
Reputation: 1675
Define a custom scrollbar using ::-webkit-scroolbar
then use linear-gradient
as the background of ::scrollbar-track
.
Here I wrote a demo on codepen: http://codepen.io/anon/pen/gppBzX
Upvotes: 2