gpt4 book ai didi

css - 我的 css3 多背景图片代码有什么问题?

转载 作者:太空宇宙 更新时间:2023-11-04 05:11:32 24 4
gpt4 key购买 nike

我尝试在 JSFiddle 上设置一个示例,但由于某种原因它显示错误:http://jsfiddle.net/t3DDW/

无论如何,这是我的 CSS:

body {
background:
url("images/bg.gif") repeat 0 0,
url("images/bg-top.gif") repeat-x 0 0;
color: #666;
font: 62.5%/1.5em helvetica, arial, sans-serif;
}

仅显示第一个背景图像。我已经仔细检查了两个图片网址是否正确。第二张背景图片没有显示是有原因的吗?我在 Chrome 和 FF 上都测试了它,但第二张 bg 图片没有显示。

最佳答案

图片看起来如何?堆叠顺序很重要。第一个将放在其他之上,依此类推。

如果第一张图片覆盖了另一张图片,则尝试调换图片的顺序。

来自source :

The first image in the list is the layer closest to the user, the next one is painted behind the first, and so on. The background color, if present, is painted below all of the other layers.

示例来自 Stacking Order of Multiple Backgrounds :

background:
url(number.png) 600px 10px no-repeat, /* On top, like z-index: 4; */
url(thingy.png) 10px 10px no-repeat, /* like z-index: 3; */
url(Paper-4.png); /* On bottom, like z-index: 1; */

关于css - 我的 css3 多背景图片代码有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9227394/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com