赞
踩
移动端页面,如iPhoneX iPhone11等手机,页面底部会有个操作条,影响页面操作。我们可以留有一个安全距离。但是移动端设置margin-bottom是默认无效的。此时需要进行额外的配置。
首先,在index.html的meta标签设置 viewport-fit=cover,user-scalable=no :
<meta name="viewport" content="width=device-width,initial-scale=1.0,viewport-fit=cover,user-scalable=no">
接着给body设置样式:
- body {
- padding-bottom: constant(safe-area-inset-bottom); /* 兼容 iOS < 11.2 */
- padding-bottom: env(safe-area-inset-bottom); /* 兼容 iOS >= 11.2 */
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。