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;
}
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;
}
Add Site wrapper after body tag
.siteWrap{
position: fixed;
overflow-x: hidden;
width: 100%;
height: 100%;
overflow-y: scroll !important;
}