Body is too high | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Body is too high

In two of my HTML codes you can scroll down even though there are no elements down there. The body seems to get "higher" the wider it is. This problem only occurs on my smartphone. https://code.sololearn.com/Wz1o64t7s7eg/?ref=app https://code.sololearn.com/W23V9RtXT4zC/?ref=app

9th Jun 2022, 12:03 PM
C. Scheler
C. Scheler - avatar
5 Answers
+ 1
If you need it to work on smartphone screens, consider using relative sizes For making the body screensize: body { width: 100vw; height: 100vh; position: fixed; }
9th Jun 2022, 2:11 PM
Lisa
Lisa - avatar
+ 1
How much do you want to scroll? Or do you want to scroll only along the width in general?
9th Jun 2022, 2:20 PM
Lisa
Lisa - avatar
+ 1
I think it's a positioning issue that is related to trying to style with css and the element directly. Or with positioning and transform. I haven't found the issue yet.
9th Jun 2022, 3:07 PM
Lisa
Lisa - avatar
0
Lisa If I do it like that, you can't scroll at all anymore.
9th Jun 2022, 2:20 PM
C. Scheler
C. Scheler - avatar
0
Lisa Horizontally I want to scroll so far that you can see everything in both codes (this works already). In "Ball throw simulation" I don't want to scroll vertically and in the other code I want to scroll at least so far down that you can read everything.
9th Jun 2022, 2:29 PM
C. Scheler
C. Scheler - avatar