gpt4 book ai didi

html - 两个背景图像。一个在 HTML 中,一个在 BODY 中。在 Firefox 中,主体图像未呈现

转载 作者:太空宇宙 更新时间:2023-11-04 15:18:33 31 4
gpt4 key购买 nike

奇怪的事情发生了。

我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码)

<html>
<head>
</head>
<body>
</body>
</html>

这是我的CSS:

html {
background-image: url(background.png);
background-repeat: repeat;
margin-top:-8px;
}
body {
background-image: url(telefonillo.png);
background-repeat:no-repeat;
}

这是 chrome 和 firefox 显示的内容: enter image description here

我该如何解决这个问题?

我尝试用 firefox 进行“检查”,并尝试从 HTML 中删除“background.png”,然后出现“telefonillo.png”。

尝试在主体上使用“z-index:1”,但没有用,因为它根本不满足。

编辑:我也尝试删除所有的 div 和其他 css,以防任何规则之间存在某种问题,但它仍在发生。

最佳答案

你为什么不像这样使用before

body:before {
content:"";
background:url(background.png) no-repeat top left;
width:100%;
height:100%;
}
body {
background:url(telefonillo.png) no-repeat top left;
width:100%;
height:100%;
}

关于html - 两个背景图像。一个在 HTML 中,一个在 BODY 中。在 Firefox 中,主体图像未呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14819582/

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