html电子邮件对齐问题
我正在尝试发送 html 电子邮件。
<table width="180" border="0">
<tr>
<td>
<img src="image.jpg" width="180">
<table border="0" width="180" border="2" height="100">
<tr>
<td width="10"></td>
<td width="160"></td>
<td width="10"></td>
</tr>
</table>
</td>
</tr>
</table>
然而,本例中的图像与表格不对齐。这是因为 2px 边框吗?我该如何对齐它们?我需要 2px 边框。有什么想法吗?
I am trying to send out an html email.
<table width="180" border="0">
<tr>
<td>
<img src="image.jpg" width="180">
<table border="0" width="180" border="2" height="100">
<tr>
<td width="10"></td>
<td width="160"></td>
<td width="10"></td>
</tr>
</table>
</td>
</tr>
</table>
However the image in this case is not aligned with the table. Is this because of the 2px border? How do I align them? I need the 2px border. Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该为图像提供 2px 左右边距,并使其与表格对齐:
This should give the image 2px margin right and left, and make it allign with the table: