I was wondering if there is any known way to make the css style background-size work in IE?
|
A bit late, but this could also be useful. There is an IE filter, for IE 5.5+, which you can apply:
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 |
|||||||||||||||||||||
|
|
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. |
|||||
|
|
|
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) |
|||
|
|
|
Thanks to this post, my full css for cross browser happiness is:
|
|||
|
|
|
This is my little hack! CSS:
HTML:
Have fun! |
|||||||||||||
|

:hoverI 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