html remove side scrollbar code example
Example: how to remove side scroll bar
body {
overflow-x: hidden;
}
/* MORE OPTIONS : -
overflow-x: auto;
overflow-x: scroll;
overflow-x: visible;
*/
body {
overflow-x: hidden;
}
/* MORE OPTIONS : -
overflow-x: auto;
overflow-x: scroll;
overflow-x: visible;
*/