Closed eek closed 6 years ago
On windows, overflow scroll always shows scroll-bars which are hideous, auto must be used to be hidden when not needed.
auto
With overflow-y: scroll;
overflow-y: scroll;
There are 2 scrollbars on the right, vs:
just one with overflow-y: auto;
overflow-y: auto;
Same goes with the code examples:
With a lot of text, it works as expected:
Thanks! Since I almost never use a Windows machine, I often overlook these kinds of bugs.
On windows, overflow scroll always shows scroll-bars which are hideous,
auto
must be used to be hidden when not needed.With
overflow-y: scroll;
There are 2 scrollbars on the right, vs:
just one with
overflow-y: auto;
Same goes with the code examples:
With a lot of text, it works as expected: