我正在使用css连接器,作为其中的一部分,我必须执行绝对URL重写的URL。
作为其中的一部分,我不会重写任何绝对URL(以http,https等开头)。在Django项目中,他们使用这些作为要忽略的URL格式:
body {
background: url("#foobar");
background: url("http:foobar");
background: url("https:foobar");
background: url("data:foobar");
background: url("//foobar");
}
除了background: url("#foobar");
格式之外,我已经看到了所有这些内容。
我也在测试用例中看到它定义行为:
div {
behavior: url("#default#VML");
}
" url('#foobar')"参考?它是有效的CSS,还是MSIE黑客还是什么?