2

Possible Duplicate:
Can I have multiple background images using CSS?

I am making a website and I am running in to the problem that the site displays fine on Firefox, however doesn't display right in any version of ie that I have tried.(I am not sure about the newer versions of ie, I don't have them installed) Here is the code

#footer {
    position: relative;
    clear: both;
    padding: 0px 0 20px 0px;
    background: url(images/footer-end-left.png) left top no-repeat, url(images/footer-end-right.png) right top no-repeat, url(images/footer-center.png) center top repeat-x, #C4C4C4;
}
Community
  • 1
  • 1
Tom
  • 141
  • 1
  • 10

2 Answers2

8

Multiple backgrounds are not supported by IE < 9.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
4

Internet Explorer only supports one background-image at a time. Multiple background-images are part of CSS 3.

TimWolla
  • 31,849
  • 8
  • 63
  • 96