systemjs/test/fixtures/css-modules/url-without-quotes.css

10 lines
173 B
CSS

.hello {
background-image: url(./path/to/image.png);
}
.world {
background-image: url('./path/to/image.png');
}
body {
background-image: url("./path/to/image.png");
}