我需要在iphone和android中的gmail和outlook的正常模式下顯示藍色文本#243De9,在黑暗模式下顯示白色,但在給出具體的CSS后,它不起作用。請確認如何繼續。
正常模式工作正常,但對于黑暗模式白色文本需要顯示,這是不會到來的。
@supports (-webkit-touch-callout: none) {
/* CSS specific to iOS devices */
.mobiledarkios {
color: #fff !important;
}
}
@supports (-webkit-touch-callout: none) {
/* CSS specific to android devices */
.mobiledark {
color: #fff !important;
font-family:Mulish,sans-serif;
font-size:24px;
font-style:normal;
font-weight:900;
letter-spacing:-0.5px;
}
}
<td align="left" valign="top"><table bgcolor="#ffffff" cellpadding="0" cellspacing="0" style="font-size : 14px;font-family : Mulish, sans-serif;line-height: 150%;Letter-spacing: 0.5px;color : #000000;font-weight:400;" width="100%">
<tr>
<td class="mobiledarkios" style="color:#243De9 ;font-family:Mulish,sans-serif;font-size:24px;font-style:normal;font-weight:900;
letter-spacing:-0.5px;">
Hi %%=IIF(LowerCase(FirstName)=='unknown','there',FirstName)=%%</td>
</tr><br>