我到处都在寻找答案。我正在使用Mailchimp撰写电子邮件广告系列。我有一些自定义CSS,带有针对移动样式的媒体查询。问题是Gmail无法识别媒体查询。其他移动电子邮件客户端是,但Gmail不是。
我已经联系Mailchimp,没有得到任何指导。我查看了StackOverflow和其他文章,并尝试实现那里共享的想法。我没有运气。
在技术方面,我已经尝试了一些在StackOverflow上建议的方法,但到目前为止还算不上成功。
<style type="text/css">.top-container img {
display: inline-block;
margin-right: 30px;
}
.content {
display: inline-block;
text-align: left;
vertical-align: top;
margin-top: 40px;
width: 60%;
}
.content p {
text-align: left;
}
@media only screen and (max-width:480px) {
.content {
width: 100%!important;
color: red!important;
}
.content p {
text-align: center;
}
.top-container img {
margin-left: auto;
margin-right: auto;
display: block;
}
}
</style>
我想看到.top-container img
被阻止,而content
则变成红色,只是为了测试媒体查询是否正常工作。
感谢您的帮助。谢谢