Computer Science, asked by aryamathew8242, 1 year ago

How do you make each word text with capital in css?

Answers

Answered by Anonymous
1

Hi,

text-transform: uppercase;

above css property and value combination is used to make every chracter in uppercase

for example THIS TEXT IS IN UPPERCASE

text-transform: capitalize;

above css property and value combination is used to make every chracter in capitalize formate

for example This Text Is Capitalize.

Similar questions