Answers for "prevent scroll up"

11

Prevent left and right scrolling

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
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