Skip to content

Instantly share code, notes, and snippets.

@csilverman
csilverman / ios-fixed-scrolling-fix.css
Created January 7, 2025 16:55 — forked from nicolaskopp/ios-fixed-scrolling-fix.css
Fix scrolling bug on iOS Safari with fixed elements and bottom bar
/* Fix scrolling bug on iOS Safari with fixed elements and bottom bar */
body.noscroll {
height: 100%;
overflow: hidden; /* make sure iOS does not try to scroll the body first */
}
/* your wrapper, most likely mobile menu */
.fixed-wrapper {
width: 100%;