0

There's a link to my test page Link

The problem is when I try to resize to small devices, background image is not covering the page properly, image is missing on the bottom of the page.

My CSS in head section. Thanks in advance for any suggestions what I did wrong.

Leo the lion
  • 3,164
  • 2
  • 22
  • 40
czucz
  • 1

1 Answers1

1

Change this

html,body {
        height: 135%;
    }

to

html,body {
        height: auto;
    }

Don't use fix height, use auto.

Leo the lion
  • 3,164
  • 2
  • 22
  • 40