粗体字符与普通字符合并

时间:2015-10-27 06:54:35

标签: email outlook newsletter

我发送带有粗体字符的客户简报表明它们结合了常规字符。 当我使用标签相同的问题。任何的想法? 我的代码在这里。

  <tr>
       <td style="font-family:Tahoma, Geneva, sans-serif; color:#000; font-size:13px; padding:20px">Hailed by<b>Apple CEO Tim Cook</b> as<b>&quot;the biggest news in iPad since the iPad&quot;</b> at its launch event in San Francisco, the extra-large<b>iPad Pro</b> is a new<b>12.9-inch tablet</b> as<b>thin as</b> the<b>iPad Air</b> and powered by the new<b>A9x 64-bit chip</b>. <br />
         <br />
         Running on Apple's latest software,<b>iOS 9, the iPad Pro</b> will work with a<b>stylus, dubbed Apple Pencil</b>, and a<b>smart keyboard accessory</b>. The<b>Smart Keyboard</b>, a keyboard especially for the<b>iPad Pro</b>, looks a lot like the one for the<b>Microsoft Surface Pro 3</b>, and<b>works similarly</b>. It was launched alongside an updated<b>iPad Mini 4</b>and<b>lower pricing</b> for the rest of the iPad line-up. Read more <a href="http://www.cnet.com/products/apple-ipad-pro/">here</a>. </td>
       </tr>
      <tr>

注意:我的客户端正在使用Outlook和Office 360​​。

outlook screenshot

1 个答案:

答案 0 :(得分:0)

第4行有间距问题:

... updated<b>iPad Mini 4</b>and<b>lower pricing</b> ...

只需添加相应的空格即可:

... updated <b>iPad Mini 4</b> and <b>lower pricing</b> ...

这个错误在几个地方重复出现,因此为了更好地进行优化,只需在使用的每个标记之前/之后使用空格,并且标记内没有空格。这就是,你将来摆脱这样的错误:)