For quite some time now, I've been grappling with this issue and despite my best efforts, I haven't been able to crack it. Essentially, I have a background image set for the body tag. However, whenever I add text on top of the background, the image becomes distorted on mobile devices, appearing pixelated and zoomed in.
Below is the CSS code I'm currently using for the body background image:
body {
background-image: url(background.png);
background-repeat: no-repeat;
background-position: center 70px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
I would greatly appreciate any assistance with this matter.