To prevent body scrolling but allow overlay scrolling with CSS, we set the overscroll-behavior
property.
For instance, we write
.overlay {
overscroll-behavior: contain;
}
to add overscroll-behavior: contain;
to prevent body scrolling but allow overlay scrolling with CSS.