Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/email/3.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
Email Outlook 2007中邮件内容的最后一行_Email_Outlook 2007 - Fatal编程技术网

Email Outlook 2007中邮件内容的最后一行

Email Outlook 2007中邮件内容的最后一行,email,outlook-2007,Email,Outlook 2007,任何人都可以让我知道,只是我发送了几段时事通讯。而且它得到了完美的接受。但是在Outlook2007中,邮件内容每一段的最后一行都有额外的行距?为什么? 见下面的例子 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text the 1500s... Lorem Ipsum is sim

任何人都可以让我知道,只是我发送了几段时事通讯。而且它得到了完美的接受。但是在Outlook2007中,邮件内容每一段的最后一行都有额外的行距?为什么?

见下面的例子

Lorem Ipsum is simply dummy text of the 
printing and typesetting industry. Lorem 
Ipsum has been the industry's standard

dummy text the 1500s...
Lorem Ipsum is simply dummy text of the 
printing and typesetting industry. Lorem 
Ipsum has been the industry's standard
dummy text the 1500s...
但应该像下面这样

Lorem Ipsum is simply dummy text of the 
printing and typesetting industry. Lorem 
Ipsum has been the industry's standard

dummy text the 1500s...
Lorem Ipsum is simply dummy text of the 
printing and typesetting industry. Lorem 
Ipsum has been the industry's standard
dummy text the 1500s...

如果代码具有span格式,则可以在end标记后查找额外的空格。然后,将使用电子邮件客户端的默认字体大小呈现此空间

例如:

Lorem Ipsum只是印刷和排版行业的虚拟文本。Lorem Ipsum已成为16世纪的行业标准虚拟文本。。。[此处空格] 带有最后一个空格的行足够高,可以容纳默认字体大小的空格(通常为12px)。这样看起来,文本的最后一行比其他行的行距大

特别是从其他媒体复制/粘贴,可能会导致出现此空间,但由于您无法看到它,因此很容易意外地设置跨度标记,使空间“滑出”它们


/Klaus

尝试在结束跨距标记后立即添加一个中断标记


例如:
一些文本

,因此添加更多的换行符将删除已经存在的额外换行符…有趣的…:(我也遇到了同样的问题,dreamweaver中的一个简单的“应用源代码格式”为我解决了这个问题!