0

我正在使用以下 CSS 代码作为整页背景。它在除 IE8 之外的所有主要浏览器中都能正常工作。我该如何为 IE 修复它?

代码:

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

谢谢。

4

2 回答 2

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>
于 2013-10-07T06:19:35.293 回答
0

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

于 2014-10-01T12:43:03.857 回答