I use this code to show image background:
body {
background:url('images/bg.jpg')no-repeat center center fixed;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow-x: hidden;
}
works good on desktop computer but when I look at the site in mobile (iPhone for ex) the image not reach the bottom of the screen and there is a white space after it.
my image file size is: 1280X1007
How can I fix that?