5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 14:41:29 +08:00
wails/website/i18n/fr/docusaurus-plugin-content-docs/version-v2.5.0/guides/overscroll.mdx
Lea Anthony ba6b28b3c2
v2.5.0
2023-05-13 14:18:06 +10:00

11 lines
310 B
Plaintext

# Overscroll
[Overscroll](https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior) is the "bounce effect" you sometimes get when you scroll beyond a page's content boundaries. This is common in mobile apps. This can be disabled using CSS:
```css
html {
height: 100%;
overflow: hidden;
}
```