Multiple choice technology web technology

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

  1. text-transform:capital

  2. text-transform:capitalize

  3. text-transform:uppercase

  4. You can't do that with CSS

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

The CSS property 'text-transform: capitalize' capitalizes the first letter of each word. 'text-transform: capital' is invalid - no such value exists. 'uppercase' would make ALL letters uppercase, not just the first. CSS can definitely do this.