Skip to content Skip to sidebar Skip to footer

Why Does Android 4 With Phonegap Ignore Css Sizes In Em?

I am using em's instead of px to set sizes of HTML containers and images in my Phonegap app. Example:
Hello

Solution 1:

Found the issue.

Android 4 rounds up font size values less than 8 up to 8.

So, if you use font-size:0.5px it'll change the font size to 8px.

Post a Comment for "Why Does Android 4 With Phonegap Ignore Css Sizes In Em?"