Background image keeps resizing on mobile | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Background image keeps resizing on mobile

I have a section in my html, and I've added a background image in css as follows: background: url('../img/landing.jpg') no-repeat center center/cover fixed; Everything works fine, except when it comes to mobile phones and other handhelds. When scrolling up or down, the image keeps resizing and causes a shaky feeling to the website, and I used pixels in place of vh (viewport-heights) units. What could I have done wrong, or differently to avoid or fix this? Also, I used scss and compiled it to css.

5th May 2020, 3:13 PM
Thomas Sankara
Thomas Sankara - avatar
2 Answers
+ 1
Try this : position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-image: url(../images/background.jpg); background-size: cover; z-index: -1;
6th May 2020, 5:21 AM
Shaili Shah
Shaili Shah - avatar
0
Thanks. I'll try that. For now I've just disabled the scrolling effect on mobile phones. On the next update, I'll add that...
6th May 2020, 2:11 PM
Thomas Sankara
Thomas Sankara - avatar