Hi.
I've some hard time trying to do something simple in non-responsive emailing.

How would achieve to do this in a responsive way ?
The requierements would be:
In a non-responsive way it would be easy to just make 3 columns with fixed widths, but using mjml i don't manage to have something that can work in both mobile/desktop versions. Can you help me about that ?
After some deeper searches, i suppose the best way for me to accomplish that would be to use the mj-raw component. Something like this : https://mjml.io/try-it-live/rJWyXF_5e
Am i right ?
Of course it should be more emailing-way, but that's the main idea.
Hey @maximeparisse, there's a simple way to achieve a responsive layout like that, using 2 mj-column wrapped in a mj-group, which purpose is to prevent columns from stacking: https://mjml.io/documentation/#mjml-group (note the comment about iOS in the doc).
Demo: https://mjml.io/try-it-live/SJsS89Oql
If you want exact widths rather than relative, using HTML might be a solution, note that you can:
mj-table to include a table: https://mjml.io/documentation/#mjml-tablemj-text that supports any HTMLI'm closing as I think this should answer your question, but feel free to answer if it doesn't.
Most helpful comment
Hey @maximeparisse, there's a simple way to achieve a responsive layout like that, using 2
mj-columnwrapped in amj-group, which purpose is to prevent columns from stacking: https://mjml.io/documentation/#mjml-group (note the comment about iOS in the doc).Demo: https://mjml.io/try-it-live/SJsS89Oql
If you want exact widths rather than relative, using HTML might be a solution, note that you can:
mj-tableto include a table: https://mjml.io/documentation/#mjml-tablemj-textthat supports any HTMLI'm closing as I think this should answer your question, but feel free to answer if it doesn't.