IE7/IE8 - 不显示背景图像

发布于 2024-12-02 16:36:00 字数 283 浏览 1 评论 0原文

我正在设计一个具有背景图像的网站,该背景图像只是在 y 轴上重复。

#background {
  background: url("../image/bg.png") repeat-y  -43px 150px;
}

这在 FireFox 和 Safari 中运行良好,但在 IE7 或 IE8 中不起作用。

我什至为这两个浏览器添加了样式表,并将背景更改为颜色(有效)而不是图像。

有什么原因导致这在这两个浏览器中不起作用吗?

谢谢

I am designing a site that has a background image, that is simply repeated in the y axis.

#background {
  background: url("../image/bg.png") repeat-y  -43px 150px;
}

This works fine in FireFox and Safari, but not in IE7 or IE8.

I have even added stylesheets for these 2 browsers and changed the background to a color (which worked) rather than the image.

Is there any reason why this isn't working in these 2 browsers?

Thanks

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

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

发布评论

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

评论(2

无风消散 2024-12-09 16:36:00

在 IE7 和 IE7 的背景样式中使用 !important IE8。

#background {
  background: url("../image/bg.png") repeat-y  -43px 150px !important;
}

use !important in background style like this for IE7 & IE8.

#background {
  background: url("../image/bg.png") repeat-y  -43px 150px !important;
}
探春 2024-12-09 16:36:00

背景有尺寸吗?因为它需要这个...如果它需要并且不起作用,您是否在页面中设置了文档类型? IE 需要这个...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Does the background have any sizes? as it will need this... If it does and thats not working have you set your doctype in the page? IE Requires this...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文