I am using the css given below for fixing a background image of body.
body {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
background-image:url(../images/main-bg.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
margin: 0;
padding: 0;
}
It is working correct on all other browsers but in IE if I press cntrl + scroll the image will get repeated
How can I fix this?
I use: