是否可以使用 mjml 设置容器或包装宽度?

Is it possible to set a container or wrapper width with mjml?

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

根据他们的documentation,可以添加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>