Answers for "prevent content horizontal scroll"

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

Browse Popular Code Answers by Language