Answers for "enable scroll on div mobile"

CSS
1

how to diagnose horizontal scroll that will not go away on mobile site

body {
    overflow-x: hidden;
    width: 100%;
}

<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
Posted by: Guest on August-26-2020
-1

css disable scroll mobile

html,
body {
            width: 100%;
            height: 100%;
            margin: 0;
            overflow: hidden;
            position: absolute;
            top: 0;
            left: 0;
}
Posted by: Guest on December-17-2020

Browse Popular Code Answers by Language