How do I make background-size work in IE?

前端 未结 8 2213
无人共我
无人共我 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:15

    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!

提交回复
热议问题