1

I try to achieve a scrollable lightbox without the effect of "furtherscrolling" the content behind it. So I set my html tag to "overflow:hidden" which works just fine in Chrome but not on Safari. Any ideas how to fix this?

2 Answers2

1

Try to add position:relative to your element

Nikolay Gorb
  • 63
  • 1
  • 5
0

You have to disable momentum/inertia scrolling to make it work in iOS, have a look at this link. This worked for me

How to disable inertial scrolling on body for iOS browsers?

Community
  • 1
  • 1
Mentor
  • 101
  • 1
  • 8