how to hide scrollbar x code example
Example 1: DISABLE the Horizontal Scroll
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: how to eliminate scroll bar in html
html { overflow-y: hidden; }
html, body {
max-width: 100%;
overflow-x: hidden;
}
html { overflow-y: hidden; }