我有这个页面,我在正文上使用了背景图像。我是一名专业的网络开发人员,并且已经这样做了数千次,所以我绝不是初学者。
无论如何,背景图像会显示在 Safari 和 Chrome 中,以及在 Firefox 中进行本地测试时。一旦我上传页面并在线测试,它就不再显示在 Firefox 中(其他浏览器都很好)。
Firebug 告诉我图像加载得很好,并且路径是正确的。
有谁知道这可能是什么原因?我想我检查了所有可能的“罪魁祸首”,如前所述,Safari 和 Chrome 中的一切都很好,无论是本地还是在线。
您可以在此处查看该页面: https ://ssl.director.dk/clients/pfmb/index.html
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.5;
color: #fff;
margin: 0;
padding: 0;
background-image: url('../img/adbg.jpg');
background-color: #000000;
background-position: top center;
background-repeat: no-repeat;
background-attachment: fixed;
}
请帮忙,因为这让我发疯。
干杯
汉斯