I used the following code in my demo .html file:
body{
background-image: url('https://i0.wp.com/www.socialnews.xyz/wp-content/uploads/2020/10/26/5573c6f0bee7ca021f4a8aecbaf6cbeb.jpg?quality=80&zoom=1&ssl=1');
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-size:cover;
background-position:relative;
}
While this image fills the entire Browser window on my desktop, I noticed some white space below it when testing it on Google Chrome on my cell phone. Any tips or advice on how to resolve this issue would be greatly appreciated.