CSS整页背景图片在IE8中不起作用

时间:2013-10-07 04:15:58

标签: css

我正在使用以下CSS代码来获取整页背景。它在所有主流浏览器中都可以正常运行IE8。我该如何为IE修复它?

CSS代码:

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;
}

感谢。

2 个答案:

答案 0 :(得分:0)

在您的浏览器中查看此代码..它在所有浏览器中都能正常使用..

 <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 am working fine every where
</body>

答案 1 :(得分:0)

.gif图片格式不支持IE8。 .PNG图像格式适用于IE8。