CSS full page background image is not working in IE8 -


i'm using following css code full page background. works fine in major browser expect ie8. how can fix ie ?

css code:

body {     background: url(../images/bodyback.gif) no-repeat center center fixed !important;  -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;      font-family: ubuntu,helvetica; } 

thanks.

check code in browsers .. working fine me in browsers..

 <html>  <head>  </head>  <body style="   background:        url('http://upload.wikimedia.org/wikipedia/commons/e/ec/happy_smiley_face.png') no-repeat center center fixed !important;  -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;      font-family: ubuntu,helvetica; ">  hi working fine every </body> 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -