Reputation:
I initialized font on every text field. But still Android Google Chrome browser some of text reads by default font size. It means that one text field's font size is bigger than the other one.
http://mamgrow.lt/pagrindinis.html
I used viewport meta tag:
<meta name="viewport" content="width=500, initial-scale=1">
Don't really know what to do to fix this. Any ideas?
Upvotes: 0
Views: 1307
Reputation: 16607
Set your viewport width to device-width and that should sort it in the latest Chrome.
<meta name="viewport" content="width=device-width, initial-scale=1">
Upvotes: 1