【发布时间】:2022-02-08 21:15:24
【问题描述】:
我使用表格制作了一个 HTML 电子邮件布局,该设计在我的机器上运行良好,但是当我将代码放入 putsmail 中进行测试时,当我在桌面。 它应该是这样的:
我的 HTML 代码:
<!--Footer-->
<table class="footer">
<tr>
<td style="padding: 50px;background-color: #f7f7f7">
<table width="100%">
<p style="text-align: center; font-size: 12px; line-height: 1.5;">
Having Trouble with something?
<br>
Reach out to us <a href="#">support@vantagecircle.com</a>
</p>
<img style="display: block; margin-right: auto;margin-left: auto; padding-bottom: 25px;" src="https://i.ibb.co/1Z05xTH/vc-footer-logo.png" width="120px" />
</table>
</td>
</tr>
</table>
我的 CSS 代码:
.footer{
align-content: center;
width: max-content;
position: relative;
}
提前谢谢你
【问题讨论】:
标签: html css html-table flexbox