Horje
disable overscroll Code Example
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
}
disable overscroll
<style>
	html {
      overflow: hidden;
      height: 100%;
  }

  body {
      height: 100%;
      overflow: auto;
  }
</style>




Html

Related
meter balise Code Example meter balise Code Example
css align image right Code Example css align image right Code Example
add link behind a button in html Code Example add link behind a button in html Code Example
href on a button Code Example href on a button Code Example
show timestamp as yyyy mm dd html angular Code Example show timestamp as yyyy mm dd html angular Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9