0

I am using CSS property overflow:hidden to stop the scrolling on my mobile app. It's not working on IOS App, Safari Browser and Android app, but this code is working on android Browser:

body {
    overflow:hidden;
}
Jens
  • 5,472
  • 5
  • 49
  • 68

1 Answers1

0

Add Site wrapper after body tag

.siteWrap{
       position: fixed;
       overflow-x: hidden;
       width: 100%;
       height: 100%;
       overflow-y: scroll !important;
   }
Abe
  • 1,207
  • 12
  • 30