Skip to content

Commit 8540f43

Browse files
committed
Sample test file
1 parent ddef1e2 commit 8540f43

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

test/test.css

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/* Фигурные скобки. Вариант 1 */
2+
div{
3+
padding:0;
4+
margin:0;
5+
}
6+
div p{
7+
font-size:1px;
8+
top:0;
9+
}
10+
div p em{
11+
font-style:italic;
12+
border-bottom:1px solid red;
13+
}
14+
15+
/* Фигурные скобки. Вариант 2 */
16+
div
17+
{
18+
padding:0;
19+
margin:0;
20+
}
21+
div p
22+
{
23+
font-size:1px;
24+
top:0;
25+
}
26+
div p em
27+
{
28+
font-style:italic;/* inline comment*/
29+
border-bottom:1px solid red;
30+
}
31+
32+
/* Фигурные скобки. Вариант 3 */
33+
div {
34+
padding:0;
35+
margin:0;
36+
}
37+
div p {
38+
font-size:1px;
39+
top:0;
40+
}
41+
div p em {
42+
/* upline comment*/
43+
font-style:italic;
44+
border-bottom:1px solid red;
45+
}
46+
47+
a{
48+
top:0;/* ololo */margin:0;}
49+
b{
50+
top:0/* trololo */;margin:0;}
51+
52+
53+
54+
55+

0 commit comments

Comments
 (0)