how to remove horizontal scrollbar in html page code example
Example 1: DISABLE the Horizontal Scroll
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: hide horizontal scrollbar css
.x-scroll-disabled {
overflow-x: hidden;
}
Example 3: remove horizontal scrollbar css
overflow-x: hidden;
Example 4: css stop scrollbar
html {
scrollbar-width: none;
-ms-overflow-style: none;
}
html::-webkit-scrollbar {
width: 0px;
}
Example 5: how to remove horizontal scrolling
::-webkit-scrollbar:horizontal {
display: none;
}