When you use font-variant: small-caps
, Explorer ignores text-transform: uppercase || lowercase
.
This is the first test paragraph. It should not contain UPPER CASE characters.
This is the second test paragraph. It should not contain lower case characters.
p.test1 { font-variant: small-caps; text-transform: lowercase; } p.test2 { font-variant: small-caps; text-transform: uppercase; }