Borja
Borja

Reputation: 3551

The font-size property on iphone "landscape" seems larger?

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

PORTRAIT enter image description here

LANDSCAPE enter image description here

I assure that in landscape version text seems larger.

Upvotes: 0

Views: 543

Answers (1)

swift-lynx
swift-lynx

Reputation: 3765

Include this to your site:

body {
    -webkit-text-size-adjust: none;
}

Upvotes: 1

Related Questions