how to make the scrollbar always visible in Chrome? it’s really annoying that it disappears.
Unfortunately, none of the online methods work
I have macbook sonoma 14.5
Chrome 126.0.6478.127
under: chrome://flags
scrollbar doesn’t exist…
please help!
thanks
1
If you need the scrollbar to appear on your page, you need to style your page with CSS:
body {
overflow-y: scroll;
}
The overflow-y
property makes the vertical scrollbar always appear. You can replace body
in my code with any element you want.
2