【发布时间】:2021-02-15 05:16:01
【问题描述】:
部署后我的网站出现问题。在移动版 Safari 上,背景图像渲染得很糟糕,看起来像 144p。我检查了 Android 上的网站 - Google Chrome、Firefox 和 Opera - 网站运行正常。
有人知道解决办法吗?
.driver {
height: 100vh;
background-image: url("/assets/img/unrevied/brooke-lark-pGM4sjt_BdQ-unsplash.jpg");
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
-o-background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 50px 20px;
@include overlay(#000, 0.2);
@media (max-width: width 1000px) {
background-position: left center;
}
}
【问题讨论】: