What is the CSS property that converts:
- all text to caps; and
- then to the original text itself?
Thanks.
What is the CSS property that converts:
Thanks.
all text to caps
then to the original text itself
The text is still in the original casing. Delete the text-transform:
property to revert.
Another variation that you might be interested in is:
font-variant: small-caps;
The small-caps value sets text in smaller size all capitals. This style is often used in legal documents and license agreements.
To remove it you could simply remove the style unless is inherited, is such case use:
font-variant: normal;