h5 下ios适配底部小黑条,简单解决方案,只需一步

在页面加入一行css代码即可

    @supports (bottom: env(safe-area-inset-bottom)) {

        body,
        .footer{
            box-sizing: content-box;
            padding-bottom: constant(safe-area-inset-bottom);
            padding-bottom: env(safe-area-inset-bottom);
        }
    }

 

h5 下ios适配底部小黑条,简单解决方案,只需一步

上一篇:axios设置withCredentials导致“跨域”的解决方案


下一篇:DevExpress 隐藏Ribbon中barbuttonItem的SuperTip(1)