views:

41

answers:

2

I'm working on an HTML email and have been running to a problem on the mail client on the iPad only.

It seems that setting inline CSS to "font-size: 12px" or any other size does not work on the mail app for iPad, despite the font-size displaying correctly in the Mail app for Mac OS X.

Any ideas?

+1  A: 

Does it support composing styled text? (i.e., bold, italics, font sizes) No (confirmed), aside from any formatting carried over by copy-and-paste from Safari or other apps. (It definitely supports displaying HTML/rich text messages.)

http://www.macintouch.com/reviews/ipad/faq.html

michel
Just to clarify: this is in an html email, and I'm using lots of HTML and in-line CSS already that works.Font-styles DO work on the mail app for iPad. Bolding works, even text-transform works, but notably font-size is not working.
Pin
A: 

Webkit automatically adjusts font-sizes on the ipad for easy reading. This CSS fixes the problem:

-webkit-text-size-adjust: none;
Pin