Multiple choice technology web technology How do you make each word in a text start with a capital letter? text-transform:capital text-transform:capitalize text-transform:uppercase 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.