Is there any known way to make the CSS style background-size work in IE?
background-size
I tried with the following script -
.selector { background-image: url("img/image.jpg"); background-size: 100%; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-repeat: no-repeat; }
It worked for me!