作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在测试过程中注意到 iPhone X(我会想象基于相同设计的其他型号)有一个问题时,在 Cordova 中几乎完成了一个应用程序的构建,即使使用:
position: fixed;
bottom: 0;
left: 0;
有没有其他人遇到过这个问题?我已经实现:
<meta name=”viewport” content=”initial-scale=1, width=device-width, height=device-height, viewport-fit=cover”>
我读到 viewport-fit=cover 修复了这个问题的某些方面,但不是全部,如您在固定菜单下看到的那样:
感谢任何帮助。
最佳答案
您可能想尝试使用 safe-area-inset-bottom
值(value)观:
.fixed-menu-thingy {
bottom: 0;
margin-bottom: constant(safe-area-inset-bottom); /* iOS 11.0 */
margin-bottom: env(safe-area-inset-bottom); /* iOS 11.2 */
position: fixed;
}
有一篇文章描述了 safe-area-inset-<xxx>
这里的值:https://webkit.org/blog/7929/designing-websites-for-iphone-x/
关于css - iPhone X 'chin' 导致 Cordova 应用程序无法利用空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56809873/
当我在测试过程中注意到 iPhone X(我会想象基于相同设计的其他型号)有一个问题时,在 Cordova 中几乎完成了一个应用程序的构建,即使使用: position: fixed; bottom:
我是一名优秀的程序员,十分优秀!