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