I am looking into background-size for a couple of reasons, but mainly because by using it I can use sprites and I can make those images responsive. The problem, of course, is older browsers such as IE8 and lower.
I wish I could use a polyfill but this one does not seem to work with numeric values, only with cover
and contain
. What I need is a decent fallback for things like this:
background-size: 100% auto;
I'd rather not use any plugins, unless there is no other way.