diff --git a/website/docs/guides/overscroll.mdx b/website/docs/guides/overscroll.mdx index 1383b2b58..cb3cae4a4 100644 --- a/website/docs/guides/overscroll.mdx +++ b/website/docs/guides/overscroll.mdx @@ -4,7 +4,7 @@ get when you scroll beyond a page's content boundaries. This is common in mobile apps. This can be disabled using CSS: ```css -body { - overscroll-behavior: none; +html { + overflow: hidden; } ```