CBSE Class 10 Computer Applications Question 16 of 37

Cascading Style Sheets (CSS) — Question 12

Back to all questions
12
Question

Question 12

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

  1. text-transform:capitalize
  2. text-transform:uppercase
  3. You can't do that with CSS
  4. text:capitalize
Answer

text-transform:capitalize

Reason — When the value of text-transform is set to capitalize, it will capitalize the first letter of each word.