我正在使用以下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;
}
感谢。
答案 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。