Css IE9之前的背景大小

Css IE9之前的背景大小,css,internet-explorer,cross-browser,css-hack,Css,Internet Explorer,Cross Browser,Css Hack,我有一些简单的CSS,它使用属性background size强制背景填充页面 body { background-attachment: fixed; background: url("/img/bg.jpg"); background-size: cover; } 由于不支持属性背景大小,此代码在Internet Explorer 8及更低版本上中断。使用,可以将IE8支持添加到此代码中。然而,在IE7和更低版本上,代码仍然会中断 有什么解决方法吗?您可以使用来解决此问题 此外

我有一些简单的CSS,它使用属性
background size
强制背景填充页面

body {
  background-attachment: fixed;
  background: url("/img/bg.jpg");
  background-size: cover;
}
由于不支持属性
背景大小
,此代码在Internet Explorer 8及更低版本上中断。使用,可以将IE8支持添加到此代码中。然而,在IE7和更低版本上,代码仍然会中断

有什么解决方法吗?

您可以使用来解决此问题

此外,你可以查看这篇文章,它与你的问题类似。

不要在IE7上浪费时间,它只占用户的0.01%。