0

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.

Yash Sharma
  • 811
  • 1
  • 9
  • 27

2 Answers2

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;
}
0

On MacOS this is set at the system level, and shouldn't be forced by the site

Joe
  • 5
  • 1