我正在尝试对 iphone 时事通讯使用媒体查询,但我什至没有设法制作一个非常基本的示例。有人可以帮我理解为什么即使在 iPhone 上以下示例中的跨度颜色仍然是蓝色的吗?我试图删除元标记视口,我什至删除了跨度上的内联样式,但跨度仍然不会变成绿色。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style type="text/css">
.test{
color: #FF0000;
}
@media only screen and (max-device-width: 480px) {
.test{
color: #00FF00 !important;
}
}
</style>
</head>
<body>
<table class="w600 l-content-table" border="0" cellpadding="0" cellspacing="0" width="600" style="letter-spacing: -0.01em; border-collapse: collapse; font-family: arial; text-align: left; margin: 0px; padding: 0px; border: 0px;">
<tbody style="margin: 0px; padding: 0px; border: 0px;">
<tr>
<td class="w600" height="55" width="600" style="color: #6f6f6f; border: #6f6f6f;">
<span class='test' style='color: #0000FF'>Test</span>
</td>
</tr>
</tbody>
</table>
</body>
</html>
我看到有一个与此非常相似的主题,但没有得到答案,而且我的问题更基本一些。
我测试这个作为电子邮件发送在 IE8 中打开的 HTML