Files
wails/website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/guides/overscroll.mdx
2021-10-29 03:15:04 +08:00

10 lines
299 B
Plaintext

# 滚动超出
[Overscroll](https://developer.mozilla.org/zh-CN/docs/Web/CSS/overscroll-behavior) 是当您滚动超出页面内容边界时有时会获得的“弹跳效果”。这在移动应用程序中很常见。这可以使用 CSS 禁用:
```css
body {
overscroll-behavior: none;
}
```