Computer Applications

How do you make each word in a text start with a capital letter ?

CSS

6 Likes

Answer

To make each word in a text start with a capital letter we set the value of text-transform property to capitalize.

For example, to make each word in all <H1> elements start with a capital letter, we define a rule as:

h1 { text-transform : capitalize ; }

Answered By

4 Likes


Related Questions