Reputation: 3551
I don't understand why the font-size property on iPhone "landscape" seems larger than portrait or desktop browser...
I have for body
font-size: 100%
and for text inside image 17px
I assure that in landscape version text seems larger.
Upvotes: 0
Views: 543
Reputation: 3765
Include this to your site:
body {
-webkit-text-size-adjust: none;
}
Upvotes: 1