为什么此背景图像不会显示在Internet Explorer中?

1 css internet-explorer background-image

(是的我知道关于那个过时的浏览器的另一个问题)

我的背景图片没有在IE中显示,但适用于Chrome和FF.

#wlt-DealView .blueBox .buyButton {
    background: url(http://domain.com/themes/regular/images/buybutton.png) no-repeat scroll 0 0 transparent;
    color: #FFFFFF;
    cursor: pointer;
    float: right;
    font-size: 200%;
    height: 50px;
    line-height: 45px;
    margin: 25px 10px 10px;
    padding: 0;
    text-align: center;
    width: 120px;
}
Run Code Online (Sandbox Code Playgroud)

Dan*_*elB 8

你在你的background风格上使用了错误的顺序.

background: transparent url(http://domain.com/themes/regular/images/buybutton.png) scroll  no-repeat 0 0;
Run Code Online (Sandbox Code Playgroud)

首先是颜色,第三个是附件.