为什么IE7没有背景图片?

发布于 2024-11-05 08:21:55 字数 244 浏览 1 评论 0原文

ie7中背景图片缺失;只有ie7有问题。

该网站位于http://www.competition4ct.com/

这是我对背景图像使用的调用:

html { background : ("source-file.png");}

为什么背景图像没有出现?

The background image is missing in ie7; only ie7 has an issue.

The site is here http://www.competition4ct.com/.

This is the call I'm using for the background image:

html { background : ("source-file.png");}

Why isn't the background image appearing?

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

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

发布评论

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

评论(2

国产ˉ祖宗 2024-11-12 08:21:55

您似乎缺少文件名前面的url。它应该是:

body {background-image: url(source-file.png);}

请注意,我在这里还使用了 background-image,而不是 background。您可以使用 background 快捷方式,然后它看起来像这样:

body {background: transparent url(source-file.png) left top no-repeat;}

body 标记上放置背景也更常见,尽管我确信 html 标签在大多数情况下也适用。

You seem to be missing the url in front of your file name. It should be:

body {background-image: url(source-file.png);}

Notice that I've also used background-image here, not background. You can use the background shortcut, then it would look something like this:

body {background: transparent url(source-file.png) left top no-repeat;}

It's also more usual to put a background on the body tag, although I'm sure the html tag will work in most cases as well.

同展鸳鸯锦 2024-11-12 08:21:55

不确定这是否导致问题,但您需要将“url”放在括号前面。使身体有底色也不得受伤。最后,仅“背景”属性可能需要更多输入,因为您一次设置了几项内容(并且您只是尝试执行背景图像)。所以:

html { background-image : url("source-file.png"); }

body { background-image : ("source-file.png");}

有关更多信息,请参阅:

http://www.w3schools.com/css/pr_background.asp

请告诉我们这些解决方案是否可以解决您的问题。

Not sure if that's causing the problem, but you need to put "url" in front of the parentheses. May not hurt either to make the body have the background. Finally, just the 'background' property might require more input, as you set several things at once (and you're only trying to do the bg image). So:

html { background-image : url("source-file.png"); }

or

body { background-image : ("source-file.png");}

For more info see:

http://www.w3schools.com/css/pr_background.asp

Let us know if any of these solutions solve your problem.

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