当屏幕分辨率变小时,我在Chrome中出现了样式问题,正文的背景颜色覆盖在背景内容上,并且在各种屏幕尺寸上也会随机发生。
此问题仅在Chrome中弹出,而它在Firefox,Safari中运行良好。我的身体标签如下
body {
height: 100%;
margin: 0;
font-family: Avenirltstd book;
background-color: #eee;
color: #222;
font-size: 10px;
overflow: hidden;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}