I want the scrollbar to be always visible to allow the user to understand that there is extra content. Currently the scrollbar fades out if not in use.
Asked
Active
Viewed 60 times
0
-
Possible duplicate of [Making the main scrollbar always visible](https://stackoverflow.com/questions/1202425/making-the-main-scrollbar-always-visible) – Tommy Nov 02 '18 at 14:13
-
no still in mac os its hidden when not in use – Yash Sharma Nov 05 '18 at 09:51
2 Answers
1
Making the main scrollbar always visible
I think the answer you're looking for is found here, but for simpliicty:
html {
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
If this does not work, take off the top overflow so you're left with just
html {
overflow-y: scroll;
}

Michael Butler
- 36
- 4