Answers for "css how to prevent horizontal scrolling"

4

css how to prevent horizontal scrolling

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

css how to prevent horizontal scrolling

body {
    overflow-x: hidden !important;
}
.container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}
Posted by: Guest on February-18-2021

Code answers related to "css how to prevent horizontal scrolling"

Browse Popular Code Answers by Language