Answers for "lock horizontal scroll css"

11

DISABLE the Horizontal Scroll

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
-1

css lock scroll

/* EXAMPLE */
body {
	overflow: hidden; /*[to unlock scroll:overflow: visible;]*/
}

/*SYNTAX
overflow: hidden;
*/
Posted by: Guest on February-25-2021

Browse Popular Code Answers by Language