强制正确的字体大小在黑莓的HTML电子邮件中的渲染?(Force the correct font-

2019-09-22 07:23发布

我的工作需要对黑莓OS很好地渲染HTML电子邮件。 文本的格式不断在黑莓手机来说没什么炸毁,见截图。

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

这里是我当前的代码 -

<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>

任何想法,将不胜感激。 这是令人头大我的大脑。 谢谢!

Answer 1:

这为我做:

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


Answer 2:

尝试添加最小宽度=“600px的”表,如一些设备不喜欢在%宽度(例如,机器人会)。 此外,请注意的font-size=12px被施加到两个<span>作为其施加到<td>



Answer 3:

很明显的是, font-size:22px被重写font-size:12px中给出td 。 你可以做的是不是跨度将您的td到两款TD的,并让他们有不同的字体大小HTML邮件从获取字体td ,而不是span标签。



文章来源: Force the correct font-size in Blackberry for rendering in an HTML email?