DEV Community

jfullerco
jfullerco

Posted on

Disable Page Pulling

In case anyone else finds the ability to "pull" your page down or right exposing whitespace that is not actually there...

https://developers.google.com/web/updates/2017/11/overscroll-behavior

Hope this helps someone else from having to search around for a solution!

* {
   overscroll-behavior: none;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)