Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/87.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Outlook不适用于HTML_Html_Outlook - Fatal编程技术网

Outlook不适用于HTML

Outlook不适用于HTML,html,outlook,Html,Outlook,我的outlook2010与我的HTML5代码不兼容。 它可以与Gmail和Hotmail配合使用 问题是Outlook将整个代码分散在整个页面上。并且没有正确对齐代码。 谁能帮我解决问题,或者至少告诉我我做错了什么? 我的代码是: <!--Row 1--> <tr style="position:fixed; width:794px;height:200px; margin-left:1050px;"> <td class=uni STYLE="

我的
outlook2010
与我的
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>


L
洛森

邦努默 数字
资料 29-10-2014
Outlook无法读取HTML5元素。在电子邮件中使用类也是不好的做法。这在GMail中看起来很糟糕,因为GMail不读取样式标签或外部CSS

正如我们可能知道的那样,Outlook使用Word(而不是IE)来呈现HTML标记。您可以在MSDN中的以下文章中阅读有关支持和不支持的HTML元素、属性和级联样式表属性的更多信息:


Outlook使用MS Word来呈现HTML,这是出了名的糟糕。然而,你并没有告诉我们在你的例子中什么是错误的;请编辑问题,使其比“不起作用”更具体。我忘记了该部分。谢谢,我编辑了我的问题。现在更好理解了吗??