how to disable scroll in css code example
Example 1: css how to remove horizontal scrollbar
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: disable scroll css
/* Answer to: "disable scroll css" */
/*
You must set the height and overflow of the body, to disable
scrolling.
*/
html, body {
margin: 0;
height: 100%;
overflow: hidden
}