Gmail application on iphone ignores html-mail "font-size" and changes it to 13 pixels

I built an HTML page (using Photoshop) that is suitable for emails. When I copy it to Gmail, send it using a browser on my PC and open a message, it looks fine. But when I try to open it through my Gmail application on my iPhone, it completely ignores style="font-size:11px" and changes it to 13px.

All style properties are built-in, and the page width is 600 pixels.

What can I do in HTML to accept its smaller font? I do not want to change the settings of the iPhone or something like that, because it must be sent to other iPhones. And, of course, I do not want to ask them to change the settings.

+4
source share
1 answer

This is just perplexing, but you can try the markup that Gmail uses for "small" fonts, for example:

 <font size="1">Text to be displayed with "small" font</font> 

Let me know if this worked!

-1
source

Source: https://habr.com/ru/post/1413904/


All Articles