TEXT-TRANSFORM Property In CSS
text-transform Property in CSS
text-transform property Declares the capitalization effects on the letters in the text.
Possible Value:
none capitalize uppercase lowercase
Examplediv { text-transform:uppercase; }
div { text-transform:lowercase; }