由於某種原因,我的媒體查詢不適用於我發送電子郵件時。我將它從Outlook 2007發送到Gmail,並使用iPhone 4s查看它。我試着用簡單的@media查詢規則發送測試郵件(即只改變字體顏色的媒體查詢),但這些都不起作用。另外,我試着從教程演示發送HTML郵件(這一個如:http://www.netmagazine.com/tutorials/build-responsive-emails),但媒體查詢也被忽略了有@media查詢被忽略爲iPhone
我已經附上下面我的代碼開頭:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org /TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Sample</title>
<style type="text/css">
@media only screen and (max-width: 480px) {
table[class="contenttable"] {
width:400px !important;
text-align: left !important;
}
table[class="contenttable2"] {
width: 382px !important;
text-align: left !important;
}
td[class="changer"] {
width:382px !important;
height: 10px !important;
}
td[class="autoalign"] {
padding: 0 !important;
text-align: center !important;
}
img[class="logo"] {
margin-left: -10px !important;
}
td[class="autotext"] {
font-size: 14px !important;
text-align:left !important;
height: 70px !important;
}
td[class="textresize"] {
font-size: 8px !important;
}
img[class="imgHide"] {
display:none !important;
height:0 !important;
width:0 !important;
}
}
</style>
</head>
<body style="padding:0; margin:0; webkit-text-size-adjust:none;-ms-text-size-adjust: 100%;">
<table width="600" border="0" cellpadding="0" cellspacing="0" class="contenttable" align="center" style="font-family: Arial;">
我完全喪失了什麼問題。任何幫助將不勝感激。
所以問題是我發送到一個Gmail?我使用原生iphone郵件應用程序來查看它,而不是瀏覽器。這有什麼區別嗎? – zheshishei 2013-04-05 08:28:40
不幸的不是。根據第一個鏈接,「由於Gmail不支持嵌入式CSS,因此任何Gmail移動應用都不支持媒體查詢並不奇怪」。 – supermasher 2013-04-05 08:33:42
Gmail刪除樣式標記中的所有內容。因爲這是聲明媒體查詢的唯一方式,所以它不支持它們。 – John 2013-04-05 15:56:50