louisremi
-
Background-size and IE8
I have created a background-size polyfill for IE8 that is really simple to use: .selector { background-size: cover; -ms-behavior: url(/backgroundsize.min.htc); }
-
how to fully stretch background image that works in IE??
In modern browsers you can now use the CSS3 property background-size .selector { /* will stretch the image so that it covers all of the element */ background-size: cover; /* will stretch the image so that it fits perfectly inside the…