【发布时间】:2021-09-14 11:59:27
【问题描述】:
我正在尝试让 HTML 电子邮件具有正常的白色背景,即使打开了移动暗模式,我也添加了以下元和媒体查询
meta name="color-scheme" content="light dark"
meta name="supported-color-schemes" content="light dark"
@media (prefers-color-scheme: light dark) {
body {
background: #ffffff !important;
color: #ffffff !important;
}
h1,h2,h3,h4,p{
color:#ffffff;
}
}
但是当我在我的手机中打开黑暗模式时,背景被覆盖为黑色,字体颜色为白色,请帮忙。
【问题讨论】:
标签: css html-email ios-darkmode darkmode android-dark-theme