【问题标题】:Change background colour for html emails in dark mode on mobile phoner在手机上以暗模式更改 html 电子邮件的背景颜色
【发布时间】: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


【解决方案1】:

你可以试试这个代码,当你想把文本颜色设置为白色时,给'aba_white'

@media screen and (prefers-color-scheme:dark) {
    .aba_white { color: #FFFFFF!important; }
    .aba_wrap { background-color: #000000 !important;}
}

【讨论】:

  • 只是这个媒体查询不会修复它。您还需要正确的元标记。这在 Outlook 上不起作用?
猜你喜欢
  • 1970-01-01
  • 2012-03-18
  • 2023-03-17
  • 1970-01-01
  • 2020-07-07
  • 2020-04-28
  • 1970-01-01
  • 2021-06-25
  • 2021-12-04
相关资源
最近更新 更多