forked from leafo/scssphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomments.scss
More file actions
44 lines (32 loc) · 763 Bytes
/
comments.scss
File metadata and controls
44 lines (32 loc) · 763 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// 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
}
// begin
.dummy {
color: blue;
}
/* comment 1 */
a {
/* comment 2 */
/* comment 3 */ color: red; /* comment 4 */
background-color: red; /* comment 5 */
/* comment 6 */
}
/* comment 7 */
// end