Home > Article > Web Front-end > How to Disable Overscrolling on macOS Chrome?
Overcoming Web Page Overscrolling on macOS Chrome
Overscrolling, a phenomenon akin to peering beyond the visible horizon of a web page, occurs in Chrome for Mac. This ability to gain insights into what lies beyond the page's boundaries is similar to that found on mobile devices like iPads or iPhones.
Some web pages, such as Gmail and the "new tab" page, intentionally disable this overscrolling behavior. If you're seeking a way to control or disable overscrolling, consider the following approach:
The initially proposed solution failed to address the issue effectively. However, an alternative CSS snippet achieves the desired result while preserving essential scrolling functionality:
<code class="css">html { overflow: hidden; height: 100%; } body { height: 100%; overflow: auto; }</code>
With this implementation, overscrolling is disabled, preventing users from extending the page's boundaries. Note that this method works by restricting overall overflow while enabling controlled scrolling within the page's designated area.
The above is the detailed content of How to Disable Overscrolling on macOS Chrome?. For more information, please follow other related articles on the PHP Chinese website!