1

I'm trying to make a page unscrollable on mobile but for some reason it's not working. On mobile, without scrolling, I can see the numbers 499 all the way down to 475. I added overflow: hidden; to the body, but all that did was hid the scroll bars. It doesn't actually stop the scrolling. What am I doing wrong?

body {
height: 2000px;
overflow: hidden;
}

<?php

$count = 500;
while ($count > 0) {
$count--;
echo $count."<br>";
}
jessica
  • 1,667
  • 1
  • 17
  • 35

1 Answers1

-3

Check for methods to disable the scrolling for eg setscrollable = false or something like that