奇怪的事情正在发生。
我有一个基本的 html 代码。html,头部,身体。(因为我收到了一些反对票,这里是完整的代码)
<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 显示的内容:
我怎样才能解决这个问题?
我尝试使用 Firefox 进行“检查”,并尝试从 HTML 中删除“background.png”,然后出现“telefonillo.png”。
在 body 上尝试了“z-index:1”,但没有工作,因为它根本不满足。
编辑:我还尝试删除所有 div 和其他 css,以防任何规则之间存在某种问题,但它仍在发生。