background背景图片在ios iPhone 6中不显示

踩坑记录:css背景图,真机测试。在各类安卓机下正常,iPhone 8 和 iPhone 11也正常,唯独在iPhone 6 真机上不显示背景图
原代码如下:


 

1 .btn {
2     width: 3.4rem;
3     height: 0.26rem;
4     background: url(../images/new1-2.webp) no-repeat;
5     background-size: 100% 100%;
6 }

通过各种试探,最后改成如下代码,在iPhone 6 上能显示了


.btn {
    width: 3.4rem;
    height: 0.26rem;
    min-height: 0.26rem;
    background-image: url(../images/new1-2.webp);
    background-size: 100% 100%;
}
posted @ 2021-04-02 16:49  Calvin_Zou  阅读(680)  评论(0编辑  收藏  举报