Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.

Commit 40276eb

Browse files
chore: Update README.md
1 parent a1ad625 commit 40276eb

File tree

1 file changed

+38
-4
lines changed

1 file changed

+38
-4
lines changed

README.md

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,49 @@
77
[ci]: https://travis-ci.org/AvraamMavridis/postcss-sort-alphabetically
88

99
```css
10-
.foo {
1110
/* Input example */
12-
}
11+
a{
12+
border: 1px solid black;
13+
color: red;
14+
background-color: red;
15+
}
16+
div{
17+
padding: 10px;
18+
margin: 20px;
19+
color: red;
20+
background-color: red;
21+
}
22+
.class {
23+
flex: 1;
24+
display-flex: 10px;
25+
}
26+
#some {
27+
background-image: url('something');
28+
align-items: center;
29+
}
1330
```
1431

1532
```css
16-
.foo {
1733
/* Output example */
18-
}
34+
a{
35+
background-color: red;
36+
border: 1px solid black;
37+
color: red;
38+
}
39+
div{
40+
background-color: red;
41+
color: red;
42+
margin: 20px;
43+
padding: 10px;
44+
}
45+
.class {
46+
display-flex: 10px;
47+
flex: 1;
48+
}
49+
#some {
50+
align-items: center;
51+
background-image: url('something');
52+
}
1953
```
2054

2155
## Usage

0 commit comments

Comments
 (0)