forked from csscomb/csscomb.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
56 lines (48 loc) · 826 Bytes
/
test.css
File metadata and controls
56 lines (48 loc) · 826 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
45
46
47
48
49
50
51
52
53
54
55
/* Фигурные скобки. Вариант 1 */
div{
padding:0;
margin:0;
}
div p{
font-size:1px;
top:0;
}
div p em{
font-style:italic;
border-bottom:1px solid red;
}
/* Фигурные скобки. Вариант 2 */
div
{
padding:0;
margin:0;
}
div p
{
font-size:1px;
top:0;
}
div p em
{
font-style:italic;/* inline comment*/
border-bottom:1px solid red;
}
/* Фигурные скобки. Вариант 3 */
div {
padding:0;
margin:0;
}
div p {
font-size:1px;
top:0;
}
div p em {
/* upline comment*/
font-style:italic;
border-bottom:1px solid red;
}
a{
top: 0;/* ololo */margin :0;}
b
{
top :0/* trololo */;margin : 0;}