禁止相对协议 URL。
a { background-image: url('//www.google.com/file.jpg'); }
/** ↑
* 这个相对协议 URL */
相对协议 URL是一个以 //
开头,后跟主机的 URL。
这条规则忽略了作为变量的 URL 参数($sass
、@less
、--custom-property
)。
true
以下模式被视为违规:
a {
background: url("//www.google.com/file.jpg");
}
以下模式不被视为违规:
a {
background: url("../file.jpg");
}
a {
background: url("http://www.google.com/file.jpg");
}
a {
background: url("/path/to/file.jpg");
}