blob: 1354c655e9898cff845ff78df717cca7c73f030f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
:root {
--image-path-stylesheet: url("images/test.png");
}
#stylesheet-relative-image {
background-image: url(images/test.png);
}
#stylesheet-relative-variable-image {
background-image: var(--image-path-stylesheet);
}
#stylesheet-relative-document-variable-image {
background-image: var(--image-path-document);
}
|