Handle the safe area in Chrome browser on the iPhone X family(在 iPhone X 系列上处理 Chrome 浏览器中的安全区域)
问题描述
对于我正在管理的网站,我正在使用新的 safe-area-inset-<position>
处理 iPhone X 系列屏幕安全区域,这在 Safari 浏览器上运行良好你可以在这里看到:
For the website that I am managing, I am handling the iPhone X family screen safe area using the new safe-area-inset-<position>
and this is working fine on Safari browser as you can see here:
使用以下代码:
/* white container for the home bar that has an height only on devices that read the safe area to cover the transparency around that bar */
.ctc-container {
background: $white;
display: block;
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
min-height: env(safe-area-inset-bottom);
z-index: 100;
}
/* chat and phone number container are positioned at the bottom of the safe area (for devices that read it) or at the bottom of the page */
.ctc-box {
position: absolute;
bottom: 0;
bottom: env(safe-area-inset-bottom);
}
现在问题出在 Chrome 浏览器上,因为它显然还没有处理安全区域,所以聊天和电话号码框与 iPhone 主页栏重叠.
Now the problem is on Chrome browser because apparently it is not handling the safe area yet, so the chat and phone number box is overlapped by the iPhone home bar.
是否有任何 CSS 解决方案可以应用于 iPhone X 系列设备上的 Chrome 来处理安全区域?
Is there any CSS solution that can be applied for Chrome on iPhone X family devices to handle the safe area?
推荐答案
您是否已将 viewport-fit=cover
添加到您的 meta[name="viewport"]
中?
Have you added viewport-fit=cover
to your meta[name="viewport"]
?
这篇关于在 iPhone X 系列上处理 Chrome 浏览器中的安全区域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 iPhone X 系列上处理 Chrome 浏览器中的安全区域
基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01