9 lines
184 B
CSS
9 lines
184 B
CSS
|
body {
|
||
|
background: url("#foobar");
|
||
|
background: url("http:foobar");
|
||
|
background: url("https:foobar");
|
||
|
background: url("data:foobar");
|
||
|
background: url("//foobar");
|
||
|
}
|
||
|
|