blob: a4e2d1199817513c2aba5b8653e08a85ce443e53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// what is going on?
/** what the heck **/
/**
Here is a block comment
**/
// this is a comment
// trailing backslash \
/*hello*/div /*yeah*/ { //surew
border: 1px solid red; // world
/* another property */
color: url('http://mage-page.com');
string: "hello /* this is not a comment */";
world: "// neither is this";
string: 'hello /* this is not a comment */' /*what if this is a comment */;
world: '// neither is this' // hell world;
;
what-ever: 100px;
background: url(/*this is not a comment?*/); // uhh what happens here
}
|