user3076049
user3076049

Reputation:

Font size bug on Android Chrome

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

Answers (1)

Kinlan
Kinlan

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

Related Questions