Reputation: 691
In some smartphones browsers is set ( by default ) font zoom - like for example 130%. How can i dont allow browser to resize font?
Sorry for my english
Upvotes: 0
Views: 223
Reputation: 678
I found this for fonts. I'm not sure it will work on different systems, but you could give it a try:
body {
-webkit-text-size-adjust: none;
}
It seems you can also turn auto-scaling off:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
Upvotes: 1