mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 01:40:03 +08: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
383 B
Plaintext
11 lines
383 B
Plaintext
# 오버스크롤(Overscroll)
|
|
|
|
[Overscroll](https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior) 은 페이지의 콘텐츠 경계를 넘어 스크롤할 때 가끔 발생하는 "바운스 효과"입니다. 이것은 모바일 앱에서도 동일합니다. CSS를 사용하여 비활성 할 수 있습니다.
|
|
|
|
```css
|
|
html {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
```
|