18 lines
586 B
CSS
Raw Normal View History

2020-05-19 11:43:42 +03:00
#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");
}