Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if there is any known way to make the css style background-size work in IE?

share|improve this question
What effect are you trying to get? – ZippyV Jun 7 '10 at 17:22
@ZippV I have a div that is about 250 pixels wide. but the background image is 300px wide. I want the background image to fit in completely (background-size:100%) so it is not getting cut off. Then on :hover I want the background size to change to the full 300px width (background-size:auto) to create the illusion of zooming – JD Isaacks Jun 7 '10 at 17:26
1  
You could achieve the same effect by using an img tag. If you need anything on top of it, use the z-index. – ZippyV Jun 7 '10 at 17:35
1  
@John consider changing the accepted answer if Dan's workaround worked for you! – Pekka 웃 May 29 '12 at 16:02

5 Answers

up vote 147 down vote accepted

A bit late, but this could also be useful. There is an IE filter, for IE 5.5+, which you can apply:

filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='images/logo.gif',
sizingMethod='scale');

-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='images/logo.gif',
sizingMethod='scale')";

However, this scales the entire image to fit in the allocated area. So if your using a sprite, this may cause issues.

Specification: AlphaImageLoader Filter @microsoft

share|improve this answer
11  
This has saved my bacon! Thanks! – Allain Lalonde Sep 1 '11 at 17:13
5  
I wonder why MS didn't just implement that functionarlity using CSS. Thanks a lot! – Martin Andersson Oct 11 '11 at 11:52
2  
Which IE versions support this please? – Péter Varga Mar 29 '12 at 15:29
2  
If you are using links and buttons inside the element which we defined this, those links and buttons wont work. Does anyone know a method to fix this? – rubyprince Jun 19 '12 at 14:35
1  
The scale method doesn't keep the ratio though.. So it's best that your element has the same ratio as your image. – Yves Van Broekhoven Aug 31 '12 at 8:49
show 9 more comments

I created jquery.backgroundSize.js: a 1.5K jquery plugin that can be used as a IE8 fallback for "cover" and "contain" values. Have a look at the demo.

share|improve this answer
This is superb. Thanks. – Milad Naseri Sep 19 '12 at 12:21
That script helped me a lot! – Warface Sep 26 '12 at 13:48

Even later, but this could be usefull too. There is the jQuery-backstretch-plugin you can use as a polyfill for background-size: cover. I guess it must be possible (and fairly simple) to grab the css-background-url property with jQuery and feed it to the jQuery-backstretch plugin. Good practice would be to test for background-size-support with modernizr and use this plugin as a fallback.

The backstretch-plugin was mentioned on SO here.The jQuery-backstretch-plugin-site is here.

In similar fashion you could make a jQuery-plugin or script that makes background-size work in your situation (background-size: 100%) and in IE8-. So to answer your question: Yes there is a way but atm there is no plug-and-play solution (ie you have to do some coding yourself).

(disclaimer: I didn't examine the backstretch-plugin thoroughly but it seems to do the same as background-size: cover)

share|improve this answer

Thanks to this post, my full css for cross browser happiness is:

<style>
.backgroundpic {
background-image: url('img/home.jpg');
background-size: cover;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='img/home.jpg',
sizingMethod='scale');
}
</style>
share|improve this answer

This is my little hack!

CSS:

ul#listid li {
  position:relative;
}
ul#listid li * {
  position:relative;
  z-index:9999;
}
ul#listid img.bg {
  display:none;
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
}
ul#listid li:hover img.bg {
  display:block;
}

HTML:

 <ul id="listid">
   <li>
     <img src="bg.png" class="bg" />
     <p>insert some content here</p>
   </li>
 </ul>

Have fun!

share|improve this answer
12  
Not really helpful as the image is no longer a background-image. – Ian Devlin Aug 25 '11 at 15:32
5  
pretty trivial implementation that doesn't even answer the question... – Court S Jun 21 '12 at 18:58
2  
This is not a hack, even remotely. Irrelevant to question :( – Replete Oct 7 '12 at 20:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.