text-transform

Modify the capitalization of your text with text-transform. Note: When someone copies and pastes text from your web site with CSS altered capitalization, they will paste the original, unaltered text that appears in your HTML code.

Value Description
capitalize The beginning of each word will be capitalized.
lowercase All text will be converted to lowercase.
uppercase All text will be converted to uppercase.

Code:

p { text-transform: capitalize; }
h5{ text-transform: uppercase; }
h6{ text-transform: lowercase; }

Display:

Hi, I am happy to see you.

Hi, I am happy to see you.
Hi, I am happy to see you.