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
Values:
| Value | Description |
| None | Default. Defines normal text, with lower case letters and capital letters |
| Capitalize | Each word in a text starts with a capital letter |
| Uppercase | Defines only capital letters |
| Lowercase | Defines no capital letters, only lower case letters |
Example:
.ttc{text-transform:capitalize;} - Puts The First Character Of Each Word In Uppercase.
.ttu{text-transform:uppercase;} - PUTS ALL CHARACTERS OF EACH WORD IN UPPERCASE.
.ttl{text-transform:lowercase;} - puts all characters of each word in lowercase.
.ttn{text-transform:none;} - No capitalization effects.
Comments (0)
You don't have permission to comment on this page.