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