最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to determine the value of safe-area-inset-* in css - Stack Overflow

programmeradmin1浏览0评论

I have an issue that I've tried solving in various ways and haven't succeeded. I am currently working on a PWA application that requires running on multiple devices. So far it runs perfectly on all devices until I started testing it on an iPhone emulator. I discovered that the presence of the notch and the space at the bottom of the screen were messing with the design of the app. Soon afterward I discovered the power of env(safe-inset-area-bottom/top/left/right) which allowed me to circumvent this issue in a simple manner. Problem was that one of the elements (the navigation at the bottom) requires to have a certain padding-bottom pared to the bottom of the screen. On most devices, this looks ok but on IOS because of the extra padding from env(safe-inset-area-bottom) it is obscenely large. So I've tried removing the padding on IOS devices in various ways which I'll list here.

1st attempt

Use cascading style

padding-bottom:1.8rem;

padding-bottom:env(safe-inset-area-bottom);

Was unsuccessful because safe-inset-area-bottom does evaluate to 0 on Chrome.

2nd attempt

Use a fallback

padding-bottom:env(safe-inset-area-bottom,1.8rem);

Unsuccessful because again safe-inset-area-bottom evaluates to 0

3rd attempt

Using SCSS if conditional

.toolbar{ @if env(safe-inset-area-bottom) == 0{ padding-bottom: 1.8rem; } @else{ padding-bottom:0 } }

This method I had tried in different case scenarios as such: using a variable to store the env variable in and check the condition on it, putting the if condition in a mixin, and including the mixin in the CSS class.

4th attempt

I tried targetting only Safari Mobile devices with the following CSS

@supports (-webkit-touch-callout: none) { padding-bottom: 0; } @supports not (-webkit-touch-callout: none) { padding-bottom: 1.8rem; }

Again this was unsuccessful

Does anyone know of any simple way of dealing with this?

I have an issue that I've tried solving in various ways and haven't succeeded. I am currently working on a PWA application that requires running on multiple devices. So far it runs perfectly on all devices until I started testing it on an iPhone emulator. I discovered that the presence of the notch and the space at the bottom of the screen were messing with the design of the app. Soon afterward I discovered the power of env(safe-inset-area-bottom/top/left/right) which allowed me to circumvent this issue in a simple manner. Problem was that one of the elements (the navigation at the bottom) requires to have a certain padding-bottom pared to the bottom of the screen. On most devices, this looks ok but on IOS because of the extra padding from env(safe-inset-area-bottom) it is obscenely large. So I've tried removing the padding on IOS devices in various ways which I'll list here.

1st attempt

Use cascading style

padding-bottom:1.8rem;

padding-bottom:env(safe-inset-area-bottom);

Was unsuccessful because safe-inset-area-bottom does evaluate to 0 on Chrome.

2nd attempt

Use a fallback

padding-bottom:env(safe-inset-area-bottom,1.8rem);

Unsuccessful because again safe-inset-area-bottom evaluates to 0

3rd attempt

Using SCSS if conditional

.toolbar{ @if env(safe-inset-area-bottom) == 0{ padding-bottom: 1.8rem; } @else{ padding-bottom:0 } }

This method I had tried in different case scenarios as such: using a variable to store the env variable in and check the condition on it, putting the if condition in a mixin, and including the mixin in the CSS class.

4th attempt

I tried targetting only Safari Mobile devices with the following CSS

@supports (-webkit-touch-callout: none) { padding-bottom: 0; } @supports not (-webkit-touch-callout: none) { padding-bottom: 1.8rem; }

Again this was unsuccessful

Does anyone know of any simple way of dealing with this?

Share Improve this question edited Mar 19, 2021 at 4:23 Ritu pal 3162 silver badges12 bronze badges asked Feb 25, 2020 at 15:46 ApophisApophis 5631 gold badge8 silver badges18 bronze badges 1
  • Please note the correct env value name is safe-area-inset-bottom. You've got the words in the wrong order. See MDN Docs – Michael Atterbury Commented Aug 4, 2021 at 17:03
Add a ment  | 

3 Answers 3

Reset to default 3

Use height: 100dvh; and it will calculate automatically the height taking into account padding bottom, and top.

https://developer.mozilla/en-US/docs/Learn/CSS/Building_blocks/Values_and_units

You need to add viewport-fit=cover in viewport meta tag in index.html.

<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">

try to use max

padding-bottom:1.8rem;padding-bottom: max(env(safe-area-inset-bottom), 1.8rem);

发布评论

评论列表(0)

  1. 暂无评论