Answers for "ios prevent scroll css"

CSS
0

ios prevent scroll css

.no-scroll {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 5;
  touch-action:none;
}
/*This div will cover the screen and prevent you from scrolling while
it's visible.*/
Posted by: Guest on February-24-2022

Browse Popular Code Answers by Language