IE7/IE8 - 不显示背景图像
我正在设计一个具有背景图像的网站,该背景图像只是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 IE7 和 IE7 的背景样式中使用 !important IE8。
use !important in background style like this for IE7 & IE8.
背景有尺寸吗?因为它需要这个...如果它需要并且不起作用,您是否在页面中设置了文档类型? IE 需要这个...
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...