CSS Text Transform
How to convert all characters to lowercase in html?
How to convert all letters to uppercase in html?
Explanation
Property :
Text TransformUsage:
text-transform: capitalize;
text-transform: lowercase;
text-transform: uppercase;
text-transform: none;
Definition:
Using this attribute/tag we can transform text with out really editing the text
It takes the following values.
a)capitalize : This will make the first letter of the every word as a capital letter.
b)uppercase : It will show all the letters as uppercase letters.
c)lowercase : It will show all the letters as lowercase letters.
d)none : This will remove any text transforms
Example 1:
Example 2:
Example 3:
Example 4: