Skip to content

Commit b3ab36b

Browse files
Text Transformation - CSS
1 parent ffd7bfa commit b3ab36b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

public/data/css.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,25 @@
1515
"code": ["p {", " letter-spacing: 0.05em;", "}"],
1616
"tags": ["css", "typography", "spacing"],
1717
"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"
1837
}
1938
]
2039
},

0 commit comments

Comments
 (0)