How do I make background-size work in IE?

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

    Thanks to this post, my full css for cross browser happiness is:

    
    

    It's been so long since I've worked on this piece of code, but I'd like to add for more browser compatibility I've appended this to my CSS for more browser compatibility:

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    

提交回复
热议问题