在雅虎邮箱中的绝对位置

发布于 2025-01-12 23:24:14 字数 495 浏览 0 评论 0原文

任何在电子邮件模板中获得绝对位置的方法。我正在尝试假位置,但在雅虎邮件中 max-height 0 被转换为 min height 0 。

  <td width="70%" style="" align="">
    <div height="0px" style="position:relative;margin-top:0px;
    min-height:0px;max-height:0px;">



<div style="margin-left:8% !important;position:relative !important;display:inline-block !important;margin-top:0px;">
</div>





                                                        </td>

Any way to acchive absolute position in email template . I am trying faux position but in Yahoo mail max-height 0 gets converted to min height 0 .

  <td width="70%" style="" align="">
    <div height="0px" style="position:relative;margin-top:0px;
    min-height:0px;max-height:0px;">



<div style="margin-left:8% !important;position:relative !important;display:inline-block !important;margin-top:0px;">
</div>





                                                        </td>

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

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

发布评论

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

评论(1

风透绣罗衣 2025-01-19 23:24:14

假绝对位置在 Yahoo! 中效果很好邮件。雅虎确实将 height 转换为 min-height,但不是 max-height。以下示例目前在雅虎的桌面网络邮件中运行良好。 (“Hello World”div 与 lorem ipsum 重叠。)

<div style="max-height:0;">
    <div style="margin-left:8%;">⚠️ Hello World</div>
</div>
<p style="margin:0;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora, accusantium.</p>

如果您仍然遇到问题,请随时分享您的整个代码。

Faux absolute position works well in Yahoo! Mail. Yahoo does convert height into min-height, but not max-height. The following example works well right now in Yahoo’s desktop webmail. (The “Hello World” div overlaps the lorem ipsum one.)

<div style="max-height:0;">
    <div style="margin-left:8%;">⚠️ Hello World</div>
</div>
<p style="margin:0;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora, accusantium.</p>

Feel free to share your entire code if you still have a problem.

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