| 1 |
/** what the heck **/ |
| 2 |
/** |
| 3 |
|
| 4 |
Here is a block comment |
| 5 |
|
| 6 |
**/ |
| 7 |
/*hello*/ |
| 8 |
div { |
| 9 |
/* another property */ |
| 10 |
border: 1px solid red; |
| 11 |
color: url('http://mage-page.com'); |
| 12 |
string: "hello /* this is not a comment */"; |
| 13 |
world: "// neither is this"; |
| 14 |
/*what if this is a comment */ |
| 15 |
string: 'hello /* this is not a comment */'; |
| 16 |
world: '// neither is this'; |
| 17 |
what-ever: 100px; |
| 18 |
/*this is not a comment?*/ |
| 19 |
background: url(); } |
| 20 |
|