Lines Matching refs:safe
4 …safe area (such as the status bar and navigation bar) set by the system by default. This ensures t…
8 
10 …safe area insets, so that the web page can be properly displayed on a device with an irregular sha…
16 You can use [expandSafeArea](../reference/apis-arkui/arkui-ts/ts-universal-attributes-expand-safe-a…
39 …safe area. The default value is **auto**, which is the same as **contain**, indicating that the vi…
46 …ction **env()**, so that the content can be placed in the safe area of the viewport. The **safe-ar…
48 /* Use safe-area-inset-* to set the distance to keep in the upper, right, bottom, and left directio…
49 env(safe-area-inset-top);
50 env(safe-area-inset-right);
51 env(safe-area-inset-bottom);
52 env(safe-area-inset-left);
54 /* Based on fallback, use safe-area-inset-* to set the distance in four directions. */
56 env(safe-area-inset-top, 20px);
57 env(safe-area-inset-right, 1em);
58 env(safe-area-inset-bottom, 0.5vh);
59 env(safe-area-inset-left, 1.4rem);
64 > **safe-area-inset-*** consists of four environment variables, which define the top, right, bottom…
71 padding-bottom: env(safe-area-inset-bottom);
77 padding-bottom: max(env(safe-area-inset-bottom), 30px);
83 