tags:

views:

45

answers:

2
+1  Q: 

css convert text

What is the CSS property that converts:

  1. all text to caps; and
  2. then to the original text itself?

Thanks.

+4  A: 

all text to caps

text-transform: uppercase;

then to the original text itself

The text is still in the original casing. Delete the text-transform: property to revert.

KennyTM
“Delete the property” – Or overwrite it with `text-transform: none;`
poke
A: 

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;
Marco Demajo
k Thanks.......
Hulk