1

This is the strangest IE error I have ever seen.

I have a background image set through this:

html {
    background: url('../res/bg_image.png') no-repeat center center fixed;
    background-size: cover;
}

The image shows up in Chrome & in Firefox but does not show in IE8.

BUT. If I click & drag anywhere on the screen, the image shows up (although it does not completely cover the screen). After this, I can click & drag anywhere else, even highlighting text, and the image stays up.

Any ideas?

Matt Robertson
  • 2,928
  • 5
  • 34
  • 62

1 Answers1

0

Background-size is not supported in IE8. That's probably your problem. http://caniuse.com/#search=background-size

Sean Thompson
  • 902
  • 1
  • 9
  • 19