为什么字体大小 CSS 不适用于 iPad HTML 电子邮件?
我正在处理 HTML 电子邮件,并且仅在 iPad 上的邮件客户端上遇到问题。
尽管字体大小在 Mac OS X 的邮件应用程序中正确显示,但将内联 CSS 设置为“font-size: 12px”或任何其他大小似乎在 iPad 的邮件应用程序上不起作用。
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Webkit 会自动调整 ipad 上的字体大小以方便阅读。这个 CSS 解决了这个问题:
Webkit automatically adjusts font-sizes on the ipad for easy reading. This CSS fixes the problem:
WebKit 布局引擎会自动调整字体大小。
截至本文,Webkit 通常用于 Safari、Chrome、Kindle 和 Palm 浏览器.
应用程序还可以利用 WebKit。
问题归结为 最小 'font-size: 13px;'
CSS 解决方法:
<代码>
div、p、a、li、td { -webkit-text-size-调整:无; }
风格>
一个问题是创建电子邮件签名时,标签可能会被覆盖或删除。
请注意,内联 WebKit 样式将从 Gmail 的 Web 客户端中删除。
The WebKit layout engine automatically adjusts font-sizes.
As of this post, Webkit is commonly used in Safari, Chrome, Kindle and Palm Browsers.
Applications can also take advantage of WebKit.
The problem comes down to minimum 'font-size: 13px;'
A CSS work-around:
<style type="text/css">
div, p, a, li, td { -webkit-text-size-adjust:none; }
</style>
One issue is when creating e-Mail Signatures, for tags may be over-written or stripped.
Please Note that inline WebKit Styling will be stripped out of Gmail's Web Client.
支持编写样式文本吗? (即粗体、斜体、字体大小)
否(已确认),除了从 Safari 或其他应用程序复制粘贴所带来的任何格式之外。 (它绝对支持显示 HTML/富文本消息。)
http://www.macintouch。 com/reviews/ipad/faq.html
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