-3

I integrated a body image, so far so good. But when I go to mobile view and scroll my page, the image of the body goes up. Shows a white margin at the bottom of the screen for about 1 second and finally load all over the screen. But the phenomenon occurs every time I go back and down my page.

Does anyone have a solution or can explain to me why this is happening?

Thank you

Alben59dk
  • 7
  • 3

1 Answers1

0

Add this on top of your CSS file:

html,body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
overflow-x: hidden;}

It works for me :)

jitu thakur
  • 740
  • 3
  • 8