Outlook 不适用于 HTML
Outlook does not work with HTML
我的 Outlook 2010
不适用于我的 HTML5
代码。
它适用于 Gmail
和 Hotmail
.
问题是 Outlook 将整个代码散布在整个页面上。并且没有正确对齐代码。
谁能帮我解决我的问题,或者至少告诉我我做错了什么?
我的代码是:
<!--Row 1-->
<tr style="position:fixed; width:794px;height:200px; margin-left:1050px;">
<td class=uni STYLE="margin-top: 18px;margin-left:1000px;height:17px;width:41px;">L</td>
</tr>
<!--Row 2-->
<tr style="position: fixed; margin-left: 750px;">
<td class=uni STYLE="top:32px;left:655px;height:34px;width:96px;font-size:22pt; " >Lossen</td>
</tr>
<!--Row 3-->
<tr style="position: fixed; margin-top: 100px ">
<br>
<td class=uni STYLE="top:128px;left:56px;height:17px;width:20px;">Bonnummer</td>
<td class=uni STYLE="top:127px;left:130px;height:17px;width:85px;"> Numbers</td>
<br>
<td class=uni STYLE="position: inherit; top:127px;left:537px;height:17px;width:40px; margin-left: 100px; margin-top: 90px">Datum</td>
<td class=uni STYLE="position: inherit; top:127px;left:580px;height:17px;width:100px; margin-left: 105px; margin-top: 90px">29-10-2014</td>
</tr>
Outlook 无法读取 HTML5 个元素。在电子邮件中使用 类 也是不好的做法。它在 GMail 中看起来很糟糕,因为 GMail 不读取样式标签或外部 CSS.
据了解,Outlook 使用 Word(而非 IE)呈现 HTML 标记。您可以在 MSDN 中的以下文章中阅读有关受支持和不受支持的 HTML 元素、属性和级联样式表属性的更多信息:
我的 Outlook 2010
不适用于我的 HTML5
代码。
它适用于 Gmail
和 Hotmail
.
问题是 Outlook 将整个代码散布在整个页面上。并且没有正确对齐代码。 谁能帮我解决我的问题,或者至少告诉我我做错了什么? 我的代码是:
<!--Row 1-->
<tr style="position:fixed; width:794px;height:200px; margin-left:1050px;">
<td class=uni STYLE="margin-top: 18px;margin-left:1000px;height:17px;width:41px;">L</td>
</tr>
<!--Row 2-->
<tr style="position: fixed; margin-left: 750px;">
<td class=uni STYLE="top:32px;left:655px;height:34px;width:96px;font-size:22pt; " >Lossen</td>
</tr>
<!--Row 3-->
<tr style="position: fixed; margin-top: 100px ">
<br>
<td class=uni STYLE="top:128px;left:56px;height:17px;width:20px;">Bonnummer</td>
<td class=uni STYLE="top:127px;left:130px;height:17px;width:85px;"> Numbers</td>
<br>
<td class=uni STYLE="position: inherit; top:127px;left:537px;height:17px;width:40px; margin-left: 100px; margin-top: 90px">Datum</td>
<td class=uni STYLE="position: inherit; top:127px;left:580px;height:17px;width:100px; margin-left: 105px; margin-top: 90px">29-10-2014</td>
</tr>
Outlook 无法读取 HTML5 个元素。在电子邮件中使用 类 也是不好的做法。它在 GMail 中看起来很糟糕,因为 GMail 不读取样式标签或外部 CSS.
据了解,Outlook 使用 Word(而非 IE)呈现 HTML 标记。您可以在 MSDN 中的以下文章中阅读有关受支持和不受支持的 HTML 元素、属性和级联样式表属性的更多信息: