Gmail is ignoring “display:none”

后端 未结 12 2135
旧巷少年郎
旧巷少年郎 2020-12-08 02:14

I have a query that Gmail is ignoring display:none.

What to do? In email HTML for hiding a row or div.

12条回答
  •  鱼传尺愫
    2020-12-08 02:52

    Building on Dan S., another example that I use frequently.

    @media only screen and (max-width: 480px) and (min-device-width: 320px) and (max-device-width: 480px) {
      p[class="hidden"] { /* I use this format to get past Yahoo Mail */
        display: block !important;
        visibility: visible !important;
        max-height: none !important;
      }
    }
    
    
      
    
    

提交回复
热议问题