mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
10 lines
173 B
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");
|
|
}
|