I have a section of text that I want to always show the vertical scrollbar handle even before the user has scrolled. I've read the answer is
html {
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
However that does not seem to initially show the scroll bar. It only shows it once the user has started scrolling. How would I show it always regardless if they have started scrolling or not? Is this possible?
Thanks!
JS fiddle for example of it not showing before scroll: