本文介绍了强制正确的字体大小在黑莓的HTML电子邮件中的渲染?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的工作,需要对黑莓OS以及渲染HTML电子邮件。文本的格式中不断得到黑莓炸毁,见截图。

I'm working on an html email that needs to render well on the Blackberry OS. The formatting of the text keeps getting blown up in Blackberry, see screenshots.

黑莓------------ ------------正确

Blackberry ------------ Correct ------------


下面是我目前的code -

Here is my current code -

<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center" style="background-color:#000000 !important;padding:0;" bgcolor="#000000">
 <tr>
  <td style="color:#ffffff;font-size:12px;background-color:#000000;" bgcolor="#000000" valign="top">
    <span style="font-weight:bold;font-size:22px;mso-line-height-rule:exactly; line-height:24px;">
       Aliquam Commodo Velit vel Ipsum
    </span>
    <span style="mso-line-height-rule:exactly; line-height:13px;">
       <br>
    </span>
    Duis consectetur velit vel ipsum interdum anella onsequat lacus mattis.        
  </td>
 </tr>
</table>

任何想法,将大大AP preciated。这是令人头大我的大脑。谢谢!

Any thoughts would be greatly appreciated. This is wracking my brain. Thanks!

推荐答案

这为我做:

@media (max-width: 600px) {
      * { -webkit-text-size-adjust:none; }
}

这篇关于强制正确的字体大小在黑莓的HTML电子邮件中的渲染?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 04:58