Prevent over-scroll

When you have a scrollable element and you scroll to the end of it, the whole page starts to scroll.

There is a little known css property

1
2
3
.element {
overscroll-behavior: contain;
}
Share