Multiple choice technology web technology

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

  1. You can't do that with CSS

  2. text-transform:uppercase

  3. text-transform:capitalize

  4. text-transform:CAPS

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In CSS, the text-transform property with the value capitalize will convert the first letter of each word to uppercase. Options like uppercase transform all letters, while CAPS is not a valid value.