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