I am trying to capitalize the first letter of each word. I did search for it but i did not get it, is it possible in CSS?
My Code currently works for the first lette
You can try to use this:
p { text-transform: capitalize; }
From the docs:
text-transform This property controls capitalization effects of an element's text. capitalize Puts the first character of each word in uppercase; other characters are unaffected.
text-transform
This property controls capitalization effects of an element's text.
capitalize Puts the first character of each word in uppercase; other characters are unaffected.