Override Android's Gmail app minimum font-size (Newsletter)

android, css, fonts, html-email

Solution

did you check this thread? https://www.campaignmonitor.com/forums/topic/7801/gmail-app-android-text-size/ as it's said there:

You need to add min-width to a container table (one that wraps all your other tables, NOT your 100% container) then you should see most, if not all auto fit issues dissapear since most auto-fit issues are related in some way to the device independent pixel (DIP) width.

Problem

I am creating a newsletter and after a lot of effort it works everywhere except android's gmail app. The problem is that it seems it has a minimum font size and that cause my table to break. Is there a way to overcome the minimum font-size not with media queries cause most likely it will get stripped. In iphone's Mail app for instance, to overcome the minimum font-size I use `-webkit-text-size-adjust:none;` Is there something similar? Thanks

Original source