Safari 中的电子邮件模板位置不佳
Position not work well for email template in safari
我正在尝试创建一个只有一个页脚的电子邮件模板,并希望将其固定在电子邮件模板的底部,有什么办法吗?提前打赏。
一个CSS答案。你 'build up' 来自这个角落。导入的图像可能有助于外观。我用散列标签使它成为一个分区class。只有师才能分配 z-index。
<style>
#e_mail_template {position:fixed;left:0;bottom:0;z-index:1000;}
</style>
注意:阅读 Syfers 评论:"You can make it static on mobile devices but not on all email clients. It will not work on some email clients like Outlook."
另请注意,z-index 为 1000 的固定位置会将其(以及分区内容)置于所有其他对象之上。
我正在尝试创建一个只有一个页脚的电子邮件模板,并希望将其固定在电子邮件模板的底部,有什么办法吗?提前打赏。
一个CSS答案。你 'build up' 来自这个角落。导入的图像可能有助于外观。我用散列标签使它成为一个分区class。只有师才能分配 z-index。
<style>
#e_mail_template {position:fixed;left:0;bottom:0;z-index:1000;}
</style>
注意:阅读 Syfers 评论:"You can make it static on mobile devices but not on all email clients. It will not work on some email clients like Outlook."
另请注意,z-index 为 1000 的固定位置会将其(以及分区内容)置于所有其他对象之上。