5

我在 html 中为自己创建了一个简单的电子邮件签名,他是代码:

<html>

<!-- Company logo goes here -->
<div id="far_left" 
    style="width: 50px; 
           height: 50px;
           float: left;
           margin-right: 10px;">
    <img src="logo.png" />
</div>

<!-- Name and occupation goes here -->
<div id="top" 
    style="height: 25px;">
    <span style="font-family: Arial, Verdana, 'Sans Serif'; font-size: 22; color: #464646;"><strong>Dean Grobler</strong>, Programmer</span>
</div>

<!-- Website link and email adress goes here -->
<div id="bottom" 
    style="font-family: Arial, Verdana, 'Sans Serif';
           font-size: 14px;
           color: #464646;
           padding: 5px;
           height: 25px;">
    <a href="http://www.deangrobler.com" style="text-decoration: none; color: #84d5f6">www.deangrobler.com</a> | 
    <a href="mailto:dean@deangrobler.com" style="text-decoration: none; color: #84d5f6">dean@deangrobler.com</a> 
</div>

在雷鸟和我的浏览器中,它正确显示:

在此处输入图像描述

但可惜在 Outlook 2010 中它没有:

在此处输入图像描述

如果它使用与 IE 相同的渲染引擎,我敢打赌它确实如此,我不会太惊讶这种情况的发生。

有任何想法吗?

4

1 回答 1

14

电子邮件客户端不会像浏览器那样呈现 html。创建 html 电子邮件时,最好使用表格。我知道这与所有现代网页设计背道而驰,但它们得到了更多电子邮件客户端的支持。这是指向 css 属性以及它们受哪些客户端支持的链接。

http://www.campaignmonitor.com/css/

于 2013-01-22T14:16:30.577 回答