I have a web page with infinite scrolling. I always want to have the vertical scrollbar present so I have added the following style:
html {
overflow-y: scroll;
}
This works in that it shows the scrollbar but it just displays an empty scrollbar, i.e. there is no cursor to allow the user to scroll up or down.
Is it possible to not only display the scrollbar but also have the cursor displaying as well?