I am experiencing an issue with the scrolling functionality in Chrome version 84.0.4147.89. I have a div that is set to overflow-y:scroll;
, but unfortunately, the scroll bar is not visible. This poses a challenge for users without a mouse or touchscreen as it makes scrolling difficult.
I attempted using overflow-y:scroll!important;
to force the scroll bar to appear, but this did not resolve the issue. Additionally, I disabled 'Use hardware acceleration when available' based on a recommendation from another source, but this also did not work.
Can someone provide insight into how I can make the scroll bar visible in Chrome?
Thank you.