Reputation: 11
It resizes perfect to android but it still looks like a full page in iphone so the text is really small, I ve tried everything I found about it but no luck.
this is the viewport setting right now
<meta name="viewport" content="width=device-width" />
thank you guys, i ll appreciate any help.
Upvotes: 0
Views: 253
Reputation: 697
Try adding 'initial-scale=1' to the viewport tag:
<meta name="viewport" content="width=device-width,initial-scale=1" />
And you can read more about the viewport tag on Apple's developer site
Upvotes: 2