Because here in andriod mobiles the property which we have given using is succesfully working but in iphone and ipad devices then we need to use webkit property for the breakage issue
html {
overflow: hidden;
}
// only for ios device this property will work
body {
overflow-y: scroll;
-webkit-overflow-scrolling:touch;
}
