CSS中的绝对路径

时间:2013-11-23 23:51:24

标签: css url internet-explorer-8 path absolute

我想在CSS中使用绝对链接来加载一些样式内容,因为我正在开发的小部件可以集成到其他站点中。目前我的问题是确定引用该内容的方式 - 因为集成商可能使用http或https作为协议。

我尝试了https和协议无关的网址,但问题是IE8,当使用https over http(示例1)时显示内容安全警告,或者根本不加载内容(示例2) )。

问题是我仍然需要IE8支持。

/* Example #1: */ background-image: url('https://localhost/img/image.png');
/* Example #2: */ background-image: url('//localhost/img/image.png');

有关获得此事的任何提示吗?

0 个答案:

没有答案