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>";
}