JSPM

  • Created
  • Published
  • Downloads 787028
  • Score
    100M100P100Q262760F
  • License MIT

mjml-column

Package Exports

  • mjml-column

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mjml-column) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

mjml-column

Columns enable you to horizontally organize the content within your sections. They must be located under mj-section tags in order to be considered by the engine. To be responsive, columns are expressed in terms of percentage.

Every single column has to contain something because they are responsive containers, and will be vertically stacked on a mobile view. Any standard component, or component that you have defined and registered, can be placed within a column – except mj-column or mj-section elements.

<mjml>
  <mj-body>
    <mj-container>
      <mj-section>
        <mj-column>
          <!-- Your first column -->
        </mj-column>
        <mj-column>
          <!-- Your second column -->
        </mj-column>
      </mj-section>
    </mj-container>
  </mj-body>
</mjml>

sexy

attribute unit description default attributes
background-color string background color for a column n/a
border string css border format none
border-bottom string css border format n/a
border-left string css border format n/a
border-right string css border format n/a
border-top string css border format n/a
border-radius px border radius n/a
width percent/px column width (100 / number of columns in section)%
vertical-align string middle/top/bottom top