Sep 13, 2011

site's background image is being scaled down on iPhone

Use the CSS3 background-size  
property to ensure
that even if the image is scaled down, it gets drawn at the correct  
size:

    body{
       background-image: url("background.jpg”);
       -webkit-background-size: 1500px 2000px;
    }

No comments: