Answers for "how to disable horizontal scrolling in html"

5

how to keep page from scrolling sideways

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

remove horizontal scrollbar css

overflow-x: hidden;
Posted by: Guest on October-11-2020

Code answers related to "how to disable horizontal scrolling in html"

Browse Popular Code Answers by Language