电子邮件表格对齐中的 HTML 图像

发布于 2024-10-11 07:24:15 字数 117 浏览 6 评论 0原文

我正在尝试将图像左对齐,然后将文本直接放在图像旁边以发送电子邮件。基本的 html 不起作用,我正在向表格专家寻求帮助,他可以向我展示如何简单地将图像放在左侧并在右侧放置可在电子邮件模板中使用的文本。任何帮助将不胜感激。

I am trying to align an image to the left, and then put text directly next to it for an email. The basic html isn't working, I am seeking help from a table guru that can show me how to simply put an image on the left and have text on the right that would work in email templates. Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

━╋う一瞬間旳綻放 2024-10-18 07:24:15

如果不了解您的设计更多信息,我不知道是否有比表格更好的方法来做到这一点。

但正如您要求的表格:

<table>
<tr>
<td>
<img src="http://your.image.here"/>
</td>
<td>
Your text goes here
</td>
</tr>
</table>

这将为您提供一个单行表格,行中有两个单元格。左侧的单元格将是图像,右侧的单元格将是文本。

Without knowing more for your design I don't know if there's a better way to do this than in tables.

But as you asked for tables:

<table>
<tr>
<td>
<img src="http://your.image.here"/>
</td>
<td>
Your text goes here
</td>
</tr>
</table>

That will give you a one row table, with two cells in the row. On the cell on the left will be an image, on the right will be the text.

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