Outlook 2007 的 td 中的背景图像

发布于 2024-10-15 13:50:38 字数 771 浏览 5 评论 0原文

我查看了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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神魇的王 2024-10-22 13:50:38

取出内联行为并显示在 vml 元素上(很好的尝试,我也尝试过)并确保它位于您的标题中:

<head>
<xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v"/>
<style type="text/css">v\:* { behavior: url(#default#VML);}</style>
<?xml:namespace prefix = v />
</head>

我希望这可以为某人节省大约 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:

<head>
<xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v"/>
<style type="text/css">v\:* { behavior: url(#default#VML);}</style>
<?xml:namespace prefix = v />
</head>

I hope this saves someone the ~8 hours it took me to find

深爱不及久伴 2024-10-22 13:50:38

我最终通过相应地增加图像的高度以使其适合来解决这个问题。我根本没有使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文