📜  移动设备上的 mjml 中心图像 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:10.940000             🧑  作者: Mango

代码示例1
MJML - Center image on mobile with media query.

1. Add class to : 
    

2. Add Media query:
  @media only screen and (max-width: 450px) {
    .center-on-mobile > table {
      margin: 0 auto !important;
    }
  }