Allows you to prevent columns from stacking on mobile. To do so, wrap the columns inside a mj-group tag, so they'll stay side by side on mobile.

mj_group(...)

Arguments

...

Unnamed items that comprise this list of MJML tags.

See also

Examples

mj_ml( mj_body( mj_container( mj_group( mj_column( mj_text("Some text") ), mj_column( mj_text("Some more text") ) ) ) ) )
#> <mjml> #> <mj-body> #> <mj-container> #> <mj-group> #> <mj-column> #> <mj-text>Some text</mj-text> #> </mj-column> #> <mj-column> #> <mj-text>Some more text</mj-text> #> </mj-column> #> </mj-group> #> </mj-container> #> </mj-body> #> </mjml>