How do I make background-size work in IE?

前端 未结 8 2100
无人共我
无人共我 2020-11-22 00:30

Is there any known way to make the CSS style background-size work in IE?

8条回答
  •  不思量自难忘°
    2020-11-22 01:28

    you can use this file (https://github.com/louisremi/background-size-polyfill “background-size polyfill”) for IE8 that is really simple to use:

    .selector {
    background-size: cover;
    -ms-behavior: url(/backgroundsize.min.htc);
    }
    

提交回复
热议问题