The text-transform property allows you to change the capitalization of text.
Valid values are: uppercase, capitalize, lowercase, initial, inherit, and none
CSS:
.example1 {
text-transform: uppercase;
}
.example2 {
text-transform: capitalize;
}
.example3 {
text-transform: lowerc...