Css里面body使用了背景色后深色模式异常

css里面body使用了背景色后深色模式异常
添加背景色后:
body {
font-size: 16px;
font-weight: 400;
line-height: 1.4em;
font-family: -apple-system, “Open Sans”, “Helvetica Neue”, sans-serif;
color: #333333;
background-color: #ffffff;
min-width: 320px;
-webkit-text-size-adjust: none;
margin: 0.1rem 0rem 0.2rem 0.1rem;
}

去除背景色后:
body {
font-size: 16px;
font-weight: 400;
line-height: 1.4em;
font-family: -apple-system, “Open Sans”, “Helvetica Neue”, sans-serif;
color: #333333;
/background-color: #ffffff;/
min-width: 320px;
-webkit-text-size-adjust: none;
margin: 0.1rem 0rem 0.2rem 0.1rem;
}

下版本修正这个问题

1 个赞