CSS后台大小在IE7/8中不起作用

Nea*_*alv 8 css internet-explorer css3 internet-explorer-8 internet-explorer-7

出于某种原因,我的背景大小在IE 7和8中不起作用.谁能告诉我为什么.同样在IE检查器中,background-size属性未显示.

<a href="" class="twitter-custom-follow-button"></a>

.twitter-custom-follow-button {
  float: left;
  width: 96px;
  height: 20px;
  background: url(../img/slices/btns/twitter_follow.png);
  background-size: 96px 20px;
  background-repeat: no-repeat;
}
Run Code Online (Sandbox Code Playgroud)

dsg*_*fin 8

那是因为background-size是IE3 之前不支持的CSS3属性.

但是,有一个线程暗示了一种可能的解决方法: 如何在IE中进行后台大小的工作?