mirror of
https://github.com/wavetermdev/wails.git
synced 2026-08-05 13:53:43 -07:00
* docs: update options documentation * docs: sync documents * docs: sync Korean, Russian, French and Portuguese documents * docs: sync Chinese, Japanese and Korean documents
11 lines
310 B
Plaintext
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;
|
|
}
|
|
```
|