WICG / window-controls-overlay

https://wicg.github.io/window-controls-overlay/
Other
99 stars 20 forks source link

How to disable rubber-band scrolling in MacOS #21

Closed mantou132 closed 3 years ago

mantou132 commented 3 years ago
Screen Shot 2021-08-28 at 1 13 35 PM
tomayac commented 3 years ago

You can do this in CSS:


html {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  padding: 0;
  overflow: auto;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}