您可以在带有 html/css 的电子邮件中创建此元素吗?

Can you create this element in an email with html/css?

我指的元素是位于主框上方、左侧和下方的 偏移框

现在使用常规 HTML 和 CSS 创建它非常容易使用绝对定位和 z-index。

但是,在电子邮件 HTML 中,您基本上只能使用表格,我无法理解。似乎不允许绝对定位。大多数电子邮件客户端将其删除。我什至不确定是否允许负定位。

你会如何创建这个? possible/worth 还在努力吗?

For email, you wouldn't use two 'cards' and overlay them like you would in web development. You can create this with tables and table cell really easily. See my pen here - codepen.io/Digital_Frankenstein/pen/GRJYOqd – Digital_Frankenstein

@digital_Frankenstein 想出了一个很好的解决方案。