I'm creating a custom template in MailChimp, all styles are inline, but when I send a preview, Gmail either just doesn't display those styles, or alters them.
For example:
<span style="display: inline-block;width: 35px;height:4px;background-color: #ff4229;"> </span>
Gmail will render as:
<span style="display:inline-block;width:35px;min-height:4px;background-color:#ff4229;"> </span>
Does anyone have an idea as to why this is happening? Thanks!
EDIT: I added max-height to inline style and now it's ok.