0

我正在使用 mjml 创建 HTML 电子邮件,看起来默认容器宽度设置为 600px。我需要它更宽,是否可以覆盖 600px 默认值,或者设置一个可以调整宽度的包装器或容器 div?

4

1 回答 1

2

根据他们的文档,您可以添加 width 属性:

width="400"

我在他们的编辑器中进行了测试,它似乎有效 - https://mjml.io/try-it-live

<mjml>
  <mj-body width="400">
    <mj-section>
      <mj-column>
        <mj-text>This is a header</mj-text>
      </mj-column>
    </mj-section>
    <mj-section background-color="#e7e7e7">
      <mj-column>
        <mj-social>
          <mj-social-element name="facebook" />
        </mj-social>
      </mj-column>
    </mj-section>
  </mj-body>
</mjml>

于 2021-04-01T21:11:47.487 回答