Google Chrome和Firefox不显示子域的背景图片

时间:2018-09-21 16:16:13

标签: css google-chrome firefox background

我正在尝试使用CSS添加背景图片。我正在使用网站构建器系统网上商店(电子页面),我只能编辑CSS。

我必须将文件上传到子域。以下代码在Edge中有效,但在Firefox或Chrome中无效。

.body {
    background-size: cover;
    background: url('http://content.store-name.com/bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

但是,这在所有浏览器中都适用。由于没有媒体管理器,我正在使用带有隐藏产品图片的黑客程序将其上传到网上商店。

.body {
    background-size: cover;
    background: url('https://store-name.com/bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

https站点上的chrome和firefox是否会阻止CSS从http站点加载文件,或者一般来说CSS不能从子域/其他域加载?

0 个答案:

没有答案