Answers for "disable overscroll"

CSS
9

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
1

disable overscroll

<style>
	html {
      overflow: hidden;
      height: 100%;
  }

  body {
      height: 100%;
      overflow: auto;
  }
</style>
Posted by: Guest on March-19-2022

Browse Popular Code Answers by Language