The text-transform property controls whether or not the text is capitalized.
p {
text-transform: capitalize;
}
Property |
Value |
Explanation |
text-transform |
capitalize |
capitalized the first letter of each word |
uppercase |
using only uppercase letters |
lowercase |
using only lowercase letters |
none |
normal text (default) |
Example