表数据中没有重复图像 (td)
是否可以在没有 CSS 的情况下停止表数据 (TD) 中重复的背景图像?
例如,
<table>
<tr>
<td background="http://foobar.com/image.jpg">Some text</td>
</tr>
</table>
我正在寻找 HTML 解决方案,因为我正在开发将用于邮件通讯的 HTML 模板。
Is it possible to stop repeating background image in a table data (TD) without CSS ?
For example
<table>
<tr>
<td background="http://foobar.com/image.jpg">Some text</td>
</tr>
</table>
I'm looking for a HTML solution, because I'm developing HTML template which will be used for a mail newsletter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以直接在 html 代码中将 css 添加到标记中:
我认为仅使用 html 是无法做到这一点的!
You can append the css to your tag straight in your html code:
I think there is no way to do that just using html!
简单的答案:不。
幸运的是,大多数电子邮件都可以使用内联 CSS 样式。因此,我会尝试以下操作,看看它是否能满足您的需求。
如果失败(正如我之前看到的那样),您唯一的选择是将图像放在 中。标记并操作它,使其位于文本下方。
请参阅此处了解支持的 CSS 属性: http://www.campaignmonitor.com/css/
希望这会有所帮助。
Simple answer: No.
Fortunately, most emails you can use inline css styling. As such, I'd try the following and see if it accomplishes what you're looking for.
In the event that fails (as I've seen it do so before), you're only other option is place the image in an <img> tag and manipulate it so it falls underneath the text.
See here for supported CSS attributes: http://www.campaignmonitor.com/css/
Hope this helps.
支持背景图像。请检查这个生成器:
http://backgrounds.cm
如果您希望图像不重复,只需添加内联样式:
到包含背景的标签图像。
background images are supported. Please check out this generator:
http://backgrounds.cm
If you want the image not to repeat just add an inline style:
to the tags containing the background image.
为了获得最大的兼容性,您应该同时使用内联 CSS 和 HTML 背景属性,因为某些客户端会忽略其中之一而不是另一个。
需要注意的几点:
阻止重复的最好方法就是使图像比需要的大得多,这样就永远不需要重复。
For maximum compatibility, you should use both inline CSS and the HTML background attribute, as some clients ignore one but not the other.
Some points to note:
The best way to stop it repeating is simply to make the image much bigger than it needs to be, so that it never needs to repeat.