我正在为 HTML 电子邮件构建标记,但是我似乎无法找到一种解决方案来防止一个单词在 iOS 电子邮件客户端中像这样破坏中间单词:
HTML:
<table class="row">
<tbody>
<tr class="mail-title">
<td class="wrapper last">
<table class="twelve columns">
<tr>
<td>
<h1 class="center">YOUR ORDER 101 HAS BEEN DISPATCHED</h1>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
CSS:
.mail-title h1 {
font-size : 18px;
text-transform : uppercase;
font-weight : normal;
word-wrap : none;
word-break : break-all;
}
我正在使用Zurb Ink 电子邮件框架,这就是wrapper
,last
和expander
类的用途。
我已经查看了这个答案,这是有道理的,因为 Ink 默认为break-word
,但这不适用于 iOS 邮件。