mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
21 lines
427 B
Plaintext
21 lines
427 B
Plaintext
background: url('foo.png')
|
|
background: url("foo/bar.jpg")
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["property-declaration", [
|
|
["property", ["background"]],
|
|
["punctuation", ":"],
|
|
["url", "url('foo.png')"]
|
|
]],
|
|
["property-declaration", [
|
|
["property", ["background"]],
|
|
["punctuation", ":"],
|
|
["url", "url(\"foo/bar.jpg\")"]
|
|
]]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for urls. |