Text Transform
The second property that allows for the control of capitalization is text-transform.
CSS
* {
text-transform: none;
}
text-transform:
accepts these term values:
none
(default, do nothing)uppercase
(make all characters uppercase)lowercase
(make all characters lowercase)capitalize
(capitalize the first letter of each word, also known as “title case”)
- Previous
- Next