div.uppercase { text-transform: uppercase; }
That will take all the letters and capitalize them. If you only want the first letter of each word to be in upper case, then use capitalize in the text-transform property.
div.caps { text-transform: capitalize; }
0 comments:
Post a Comment