5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-06 01:40:03 +08:00
wails/website/i18n/ko/docusaurus-plugin-content-docs/current/guides/overscroll.mdx
Misite Bao 91de3ab0c5
docs: update and sync documents (#2112)
* docs: update options documentation

* docs: sync documents

* docs: sync Korean, Russian, French and Portuguese documents

* docs: sync Chinese, Japanese and Korean documents
2022-11-21 22:13:43 +11:00

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;
}
```