I was wondering whether it is possible to prevent following behaviour: I've got a *.css file in which I define the font-size for my mobile-web-app.
html,body { font-size:16px !important; }
I didn't use any other font-size attributes in my files.
Now, when I turn into the landscape mode, the font-size changes.
How can I prevent or manipulate this behaviour. Do I have to use @media screen and (max-width: x px) { }
or is there any other way?
Thanks for sharing.