How to change the text to upper case, lower case, title case using CSS?
CSS Property:
CSS Property:
text-transformDefinition:
It controls the capitalization (uppercase, lowercase, titlecase) of text.Default value:
noneExample:
{text-transform:uppercase;}Property Values:
{text-transform:capitalize;}
{text-transform:lowercase;}
capitalize - convert first character of each word to upper case.
uppercase - convert all character of each word to upper case.
lowercase - convert all character of each word to lower case.
0 comments:
Post a Comment