Cordova application displayed in upper case only
Hello,
Why my cordova/android application displays all text in capilal letters ?
For exemple :
code : <title>My Application</title>
Android page : MY APPLICATION
code : Login :
Android page : LOGIN :
I need really help :-(
Best regards
Please sign in to leave a comment.
Hi,
It was due to the default css style generated by cordova's create command (index.css) :
body {
. . .
text-transform:uppercase;
width:100%;
}