HTML 电子邮件:Outlook 在 space 之后放下文本
HTML Email : Outlook puts down the text after space
我正在制作 HTML 电子邮件。
我面临的问题是,当我在 Outlook 中看到我的代码输出时,
在线注册文本在outlook中下降。
喜欢Register在一行和Online在新的一行。
<table cellspacing="0" cellpadding="0" border="0" style=";border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt; background: transparent;">
<tbody><tr>
<td valign="middle" height="40" align="center" class="main-bg-color" style=" background: #ffee00;color: black;display: block;padding-left: 20px;padding-right: 20px;!important; width:100px; cursor: pointer;">
<div class="modtxt"><span class="wrap_textbox"><a style="color: black;text-align: center; display:block; text-decoration: none;-webkit-text-size-adjust: none;font-size: 10px;line-height: 40px;text-transform:uppercase;font-family: \'proxima_novasemibold\', Arial, sans-serif;" href="http://www.hubilo.com/widget/webpanel/login.php?event=c1d1b1dc8d40c37429a8fd1f627c5c5e"><span style="font-weight:100;">Register Online</span></a></span></div>
</td>
</tr>
</tbody></table>
我该如何解决?
谢谢。
我不完全确定你想做什么,但如果确保 "register online" 永远不会分成两行,那么 Outlook 的简单解决方案是使用不间断space 字符 (
) 而不是 space.
REGISTER ONLINE
这应该可以解决该特定问题。
我正在制作 HTML 电子邮件。
我面临的问题是,当我在 Outlook 中看到我的代码输出时,
在线注册文本在outlook中下降。
喜欢Register在一行和Online在新的一行。
<table cellspacing="0" cellpadding="0" border="0" style=";border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt; background: transparent;">
<tbody><tr>
<td valign="middle" height="40" align="center" class="main-bg-color" style=" background: #ffee00;color: black;display: block;padding-left: 20px;padding-right: 20px;!important; width:100px; cursor: pointer;">
<div class="modtxt"><span class="wrap_textbox"><a style="color: black;text-align: center; display:block; text-decoration: none;-webkit-text-size-adjust: none;font-size: 10px;line-height: 40px;text-transform:uppercase;font-family: \'proxima_novasemibold\', Arial, sans-serif;" href="http://www.hubilo.com/widget/webpanel/login.php?event=c1d1b1dc8d40c37429a8fd1f627c5c5e"><span style="font-weight:100;">Register Online</span></a></span></div>
</td>
</tr>
</tbody></table>
我该如何解决?
谢谢。
我不完全确定你想做什么,但如果确保 "register online" 永远不会分成两行,那么 Outlook 的简单解决方案是使用不间断space 字符 (
) 而不是 space.
REGISTER ONLINE
这应该可以解决该特定问题。