在Safari iOS上使用背景图像看起来很丑陋

时间:2017-09-12 16:08:44

标签: html ios css image safari

我试图修复背景图片。在其他设备上显示良好...但在Safari iOS看起来非常难看。代码如下:

.main {
    background: url('imgs/bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

因此可以看出: enter image description here

代码在这里:https://github.com/lozanotux/lozanotux.github.io

SOLUTION(CSS):

.main {
    background: url(../imgs/bg.jpg);
    background-color: #444C5C;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    zoom: 100%;
}

0 个答案:

没有答案