> But if I want to transform to lower case all words of a phrase and at the
> some time I want to capitalize them?
Using CSS to change to case of a text does it for display purposes
only - the actual value of the text is not changed. If you submit that
form to a script that sends to email, you wi
Hi at all
many times users insert into input fields words with mixed upper and lower
cases.
If I want lower case I insert into css file:
input {text-transform:lowercase}
and if I want to capotalize I insert:
input {text-transform:capitalize}
But if I want to transform to lower case all words