Blame view

node_modules/less/test/css/rewrite-urls-local/rewrite-urls-local.css 586 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  #imported-file {
    background-image: url("./folder/relative/path");
    background-image: url("./relative/path");
    background-image: url("../relative/path");
    background-image: url("module");
    background-image: url("module/path");
    background-image: url("module/relative/path");
  }
  #rewrite-urls-local {
    background-image: url("./relative/path");
    background-image: url("../relative/path");
    background-image: url("./path");
    background-image: url("./");
    background-image: url("module");
    background-image: url("module/path");
    background-image: url("module/relative/path");
  }