Asked by Mike Moskvich

Write some text in a paragraph and then using css capitalize the first letter in every word in the paragraph.

Answers

Answered by MathMate
Use the capitalize command as in:
p.capitalize {text-transform:capitalize;}

or,
<p class="capitalize">This is some text.</p>

For details, see:
http://www.w3schools.com/css/css_text.asp
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions