function-url-no-scheme-relative
禁止使用方案相对 URL。
a { background-image: url('//www.google.com/file.jpg'); }
/** ↑
* This scheme-relative 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");
}