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

发布于 2024-11-16 06:26:20 字数 456 浏览 3 评论 0原文

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

我的背景图像在 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;
}

(Yes I know another question about that obsolete browser)

My background image does not show in IE but works fine for Chrome and 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;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

丿*梦醉红颜 2024-11-23 06:26:20

您在 background 样式上使用了错误的顺序。

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

首先是颜色,第三是附件。

You are using the wrong order on your background style.

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

Have the color at first and attachment as 3rd.

拔了角的鹿 2024-11-23 06:26:20

我遇到了图像无法在旧版浏览器中显示的问题,因为文件未正确保存。

所以我建议尝试再次保存您的图像

I have had problems with images not displaying in older browsers becasuse the file had not saved properly.

so i'd suggest try saving your image again

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文