Answers for "avoid horizontal scroll responsive"

5

how to keep page from scrolling sideways

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
0

remove horizontal scroll in small devices css

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

Browse Popular Code Answers by Language