We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffd7bfa commit b3ab36bCopy full SHA for b3ab36b
public/data/css.json
@@ -15,6 +15,25 @@
15
"code": ["p {", " letter-spacing: 0.05em;", "}"],
16
"tags": ["css", "typography", "spacing"],
17
"author": "dostonnabotov"
18
+ },
19
+ {
20
+ "title": "Text Transformation",
21
+ "description": "It can be used to turn text into uppercase or lowercase letters, or capitalize the first letter of each word",
22
+ "code": [
23
+ "p.uppercase {",
24
+ " text-transform: uppercase;",
25
+ "}",
26
+ "",
27
+ "p.lowercase {",
28
+ " text-transform: lowercase;",
29
30
31
+ "p.capitalize {",
32
+ " text-transform: capitalize;",
33
+ "}"
34
+ ],
35
+ "tags": ["css", "typography", "text"],
36
+ "author": "Haider-Mukhtar"
37
}
38
]
39
},
0 commit comments