0

What is the alternative CSS property for "background-size:100% 100%;" in Internet Explorer(IE)?

Palanikumar
  • 6,940
  • 4
  • 40
  • 51
  • 1
    Duplicates: http://stackoverflow.com/questions/4806310/ie-background-size-not-working, http://stackoverflow.com/questions/2991623/make-background-size-work-in-ie, http://stackoverflow.com/questions/4885145/ie-8-background-size-fix – Riz Nov 30 '11 at 10:16

1 Answers1

1

Which version of IE?
Microsoft Internet Explorer 9.0+ offers full support for the background-size property. IE6, 7 and 8 will not support background-size
As far as I'm aware there is no CSS alternative for background-size.

Depending on what you're trying to do, you could have a <div><img> in your HTML and achieve the same result by absolute positioning the div and setting img{width:;} in your CSS...

peduarte
  • 1,667
  • 3
  • 16
  • 24