15 lines
259 B
CSS
15 lines
259 B
CSS
#strings {
|
|
background-image: url("http://son-of-a-banana.com");
|
|
quotes: "~" "~";
|
|
content: "#*%:&^,)!.(~*})";
|
|
empty: "";
|
|
}
|
|
#comments {
|
|
content: "/* hello */ // not-so-secret";
|
|
}
|
|
#single-quote {
|
|
quotes: "'" "'";
|
|
content: '""#!&""';
|
|
empty: '';
|
|
}
|