Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #disable #scroll #css
ADD COMMENT
Topic
Name
3+5 =