hide side scroll code example
Example 1: css how to remove horizontal scrollbar
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: how to hide the scrollbar in css
::-webkit-scrollbar {
display: none;
}
html, body {
max-width: 100%;
overflow-x: hidden;
}
::-webkit-scrollbar {
display: none;
}