0
How do I completely remove the scrolling screen?
The game goes beyond the screen. https://code.sololearn.com/Ww6S7hCbD1IR/?ref=app
3 Antworten
+ 1
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
write this in body stylesheet...
0
Overflow : hidden; will work for you in body
0
Thanks