iOS 底部安全区适配

iOS 底部安全区适配

Author: huyikai

cssiOS
/* 底部悬浮固定的菜单或其他容器 */
padding-bottom: calc(0px + constant(safe-area-inset-bottom));
padding-bottom: calc(0px + env(safe-area-inset-bottom));
/* 相对于底部固定的悬浮元素,如返回顶部 */
position: fixed;
bottom: calc(0px + constant(safe-area-inset-bottom));
bottom: calc(0px + env(safe-area-inset-bottom));