Answers for "disable horizontal scroll on website phone size"

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

remove horizontal scroll in small devices css

html, body {
  overflow-x: hidden;
}
body {
  position: relative
}
Posted by: Guest on August-23-2021

Code answers related to "disable horizontal scroll on website phone size"

Browse Popular Code Answers by Language