Prevent "overscrolling" of web page Prevent "overscrolling" of web page google-chrome google-chrome

Prevent "overscrolling" of web page


The accepted solution was not working for me. The only way I got it working while still being able to scroll is:

html {    overflow: hidden;    height: 100%;}body {    height: 100%;    overflow: auto;}


In Chrome 63+, Firefox 59+ and Opera 50+ you can do this in CSS:

body {  overscroll-behavior-y: none;}

This disables the rubberbanding effect on iOS shown in the screenshot of the question. It however also disables pull-to-refresh, glow effects and scroll chaining.

You can however elect to implement your own effect or functionality upon over-scrolling. If you for instance want to blur the page and add a neat animation:

<style>  body.refreshing #inbox {    filter: blur(1px);    touch-action: none; /* prevent scrolling */  }  body.refreshing .refresher {    transform: translate3d(0,150%,0) scale(1);    z-index: 1;  }  .refresher {    --refresh-width: 55px;    pointer-events: none;    width: var(--refresh-width);    height: var(--refresh-width);    border-radius: 50%;     position: absolute;    transition: all 300ms cubic-bezier(0,0,0.2,1);    will-change: transform, opacity;    ...  }</style><div class="refresher">  <div class="loading-bar"></div>  <div class="loading-bar"></div>  <div class="loading-bar"></div>  <div class="loading-bar"></div></div><section id="inbox"><!-- msgs --></section><script>  let _startY;  const inbox = document.querySelector('#inbox');  inbox.addEventListener('touchstart', e => {    _startY = e.touches[0].pageY;  }, {passive: true});  inbox.addEventListener('touchmove', e => {    const y = e.touches[0].pageY;    // Activate custom pull-to-refresh effects when at the top of the container    // and user is scrolling up.    if (document.scrollingElement.scrollTop === 0 && y > _startY &&        !document.body.classList.contains('refreshing')) {      // refresh inbox.    }  }, {passive: true});</script>

Browser Support

As of this writing Chrome 63+, Firefox 59+ and Opera 50+ support it. Edge publically supported it while Safari is an unknown. Track progress here and current browser compatibility at MDN documentation

More information


One way you can prevent this, is using the following CSS:

html, body {    width: 100%;    height: 100%;    overflow: hidden;}body > div {    height: 100%;    overflow: scroll;    -webkit-overflow-scrolling: touch;}

This way the body has never any overflow and won't "bounce" when scrolling at the top and bottom of the page. The container will perfectly scroll its content within. This works in Safari and in Chrome.

Edit

Why the extra <div>-element as a wrapper could be useful:
Florian Feldhaus' solution uses slightly less code and works fine too. However, it can have a little quirk, when it comes to content that exceeds the viewport width. In this case the scrollbar at the bottom of the window is moved out of the viewport half way and is hard to recognize/reach. This can be avoided using body { margin: 0; } if suitable. In situation where you can't add this CSS the wrapper element is useful as the scrollbar is always fully visible.

Find a screenshot below:enter image description here