Answers for "css disable scroll on click"

CSS
2

disable click css

.avoid-clicks {
  pointer-events: none;
}
Posted by: Guest on January-13-2021
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

Browse Popular Code Answers by Language