This question already has an answer here:
The following css code is not working in internet explorer.. Please suggest me the solution that work in internet explorer to set background
body {
background: url("images/Login-BG.png") no-repeat center center fixed;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Older version of IE don't support
background-size:
if you need to use a fall back for older version of IE do this:For your code to work you need to have height to your body which may be equal to the height of your image.