因为现在的ios全面屏底部有小黑线,位于底部的元素会造成黑线的阻挡,可以使用
height: calc(100% - constant(safe-area-inset-bottom));
height: calc(100% - env(safe-area-inset-bottom));
tips: 记得先使用constant 再使用 env
因为现在的ios全面屏底部有小黑线,位于底部的元素会造成黑线的阻挡,可以使用
height: calc(100% - constant(safe-area-inset-bottom));
height: calc(100% - env(safe-area-inset-bottom));
tips: 记得先使用constant 再使用 env