Why does font-size CSS not work on iPad HTML emails? -
I am working on an HTML email and running a problem on the mail client only on the iPad.
It seems that despite the font size displayed correctly in the Mail app for Mac OS X, the inline CSS is "font-size: 12px" or another size setting for the iPad app. But does not work on
Any ideas?
Webkit adjusts the font size on the iPad to read easily. This CSS fixes the problem:
-webkit-text-size-adjust: none;
Comments
Post a Comment