In iphone mobile and iPad when scrolling down in the home page banner image is breaking

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;
}

Leave a comment

Your email address will not be published. Required fields are marked *