Answers for "disable horizontal scroll css mobile"

CSS
-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
0

prevent x axis scrolling on mobile

<meta name="viewport" content="user-scalable=0;"/>
Posted by: Guest on July-04-2020

Code answers related to "disable horizontal scroll css mobile"

Browse Popular Code Answers by Language