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,767
  • 5
  • 54
  • 69

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,357
  • 13
  • 31