css codeto make each word in a text begin with a capital letter
Answers
Answered by
2
You can add the following property and value to a specified selector (in this case paragraph (i.e.) p) for the text which every word should start with a capital letter.
p {
text-transform: capitalize;
}
The above code ensures that each word in the paragraph's text starts with a capital letter.
Hope this helps.
Similar questions