Comment by Waterluvian
1 year ago
I love it. If you want to eliminate the pull down to refresh on iOS, I found this worked well for my projects:
/* Prevent elastic scrolling on ios */ html { overflow: hidden; }
1 year ago
I love it. If you want to eliminate the pull down to refresh on iOS, I found this worked well for my projects:
/* Prevent elastic scrolling on ios */ html { overflow: hidden; }
I believe overscroll-behavior is better
https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-...
Oh cool I had no clue.