-1

I have some simple CSS which uses the property background-size to force the background to fill the page.

body {
  background-attachment: fixed;
  background: url("/img/bg.jpg");
  background-size: cover;
}

This code breaks on Internet Explorer 8 and lower, due to the lack of support for the property background-size. Using this polyfill code, its possible to add IE8 support to this code. However, the code still breaks on IE7 and lower.

Is there any solution to this?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Julian Lachniet
  • 223
  • 4
  • 25

1 Answers1

-1

You can used the AlphaImageLoader Filter to solve this issue.

Also, you can check this post, which is similar to your issue. How do I make background-size work in IE?