/ Published in: CSS
Through the CSS text-transform property you can make sure certain blocks of text are either uppercase, lowercase, or only the first letter of each word is uppercase
Expand |
Embed | Plain Text
1 p { 2 text-transform: uppercase; 3 } 4 p { 5 text-transform: lowercase; 6 } 7 p { 8 text-transform: capitalize; 9 }
You need to login to post a comment.
