Answers for "disable horizontal scroll css"

5

how to keep page from scrolling sideways

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

hide horizontal scrollbar css

.x-scroll-disabled {
	overflow-x: hidden;
}
Posted by: Guest on March-23-2020
6

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
}
Posted by: Guest on April-20-2020
4

remove horizontal scrollbar css

overflow-x: hidden;
Posted by: Guest on October-11-2020
1

how to stop a page from scrolling horizontally

overflow-x: hidden
Posted by: Guest on April-18-2020

Code answers related to "disable horizontal scroll css"

Browse Popular Code Answers by Language