I have a query that Gmail is ignoring display:none.
What to do? In email HTML for hiding a row or div.
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;
}
}