Outlook 2007 的 td 中的背景图像
我查看了Outlook 2007中TD的背景图像。我无法在 td 元素中显示背景图像。
我还查看了 http://www.campaignmonitor.com/forums/ viewtopic.php?id=3862 并尝试过,但没有任何乐趣。
只有我的代码片段:
<td height="100%" valign="top" background="myimage.gif" alt="" bgcolor="#FFFF00">
<!--[if gte mso 9]>
<v:image xmlns:v="urn:schemas-microsoft-com:vml" style='behavior: url(#default#VML); display:inline-block;width:51px;height:10px;position:absolute;top:0;left:0;border:0;z-index:-1;' src="myimage.gif" />
<![endif]-->
... td contents...
</td>
有什么想法吗?
I've looked at the question at background image on TD in Outlook 2007. I can't get a background image to display in a td element.
I've also looked at http://www.campaignmonitor.com/forums/viewtopic.php?id=3862 and tried it but no joy.
Only a fragment of my code:
<td height="100%" valign="top" background="myimage.gif" alt="" bgcolor="#FFFF00">
<!--[if gte mso 9]>
<v:image xmlns:v="urn:schemas-microsoft-com:vml" style='behavior: url(#default#VML); display:inline-block;width:51px;height:10px;position:absolute;top:0;left:0;border:0;z-index:-1;' src="myimage.gif" />
<![endif]-->
... td contents...
</td>
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取出内联行为并显示在 vml 元素上(很好的尝试,我也尝试过)并确保它位于您的标题中:
我希望这可以为某人节省大约 8 个小时的时间
take out the inline behavior and display on the vml element (nice try, I tried that one too) and make sure this is in your header:
I hope this saves someone the ~8 hours it took me to find
我最终通过相应地增加图像的高度以使其适合来解决这个问题。我根本没有使用VML。
I eventually got around this by increasing the height of the image accordingly to make it fit. I didn't use VML at all.