html电子邮件对齐问题

发布于 2024-12-06 01:28:37 字数 496 浏览 1 评论 0原文

我正在尝试发送 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 技术交流群。

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

发布评论

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

评论(2

故事未完 2024-12-13 01:28:38
<img src="image.jpg" width="180" style="margin:0 0 0 2px;padding:0;display:block" alt="" />
<img src="image.jpg" width="180" style="margin:0 0 0 2px;padding:0;display:block" alt="" />
土豪我们做朋友吧 2024-12-13 01:28:38

这应该为图像提供 2px 左右边距,并使其与表格对齐:

<img src="image.jpg" width="180" style="margin-left: 2px; margin-right: 2px;">

This should give the image 2px margin right and left, and make it allign with the table:

<img src="image.jpg" width="180" style="margin-left: 2px; margin-right: 2px;">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文