解决IE8,7下设置背景图片 background-size 不支持问题

巫马心水
2023-12-01

css3中,background-size不支持ie8以下的版本,为了解决问题。在网上找了一个htc文件.

  (backgroundsize.htc)

 

 https://github.com/louisremi/background-size-polyfill

 

页面直接引用:

 div { background:url(img/背景.png) no-repeat;

    background-size:100% 100% ;

    -ms-behavior: url(css/backgroundsize.min.htc);
    behavior: url(css/backgroundsize.min.htc);"

  }

转载于:https://www.cnblogs.com/crizy/p/6141191.html

 类似资料: