mirror of
https://github.com/PlayEdu/h5.git
synced 2025-06-28 02:42:51 +08:00
下边距优化
This commit is contained in:
parent
3098d99de4
commit
aaa4a1f1fb
@ -119,6 +119,10 @@
|
||||
text-align: left;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
padding-bottom: calc(
|
||||
55px + constant(safe-area-inset-bottom)
|
||||
); /* 兼容iOS 11.0 - 11.2 */
|
||||
padding-bottom: calc(55px + env(safe-area-inset-bottom)); /* 兼容iOS 11.2+ */
|
||||
.item {
|
||||
width: 100%;
|
||||
float: left;
|
||||
|
@ -17,6 +17,10 @@
|
||||
text-align: left;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
padding-bottom: calc(
|
||||
80px + constant(safe-area-inset-bottom)
|
||||
); /* 兼容iOS 11.0 - 11.2 */
|
||||
padding-bottom: calc(80px + env(safe-area-inset-bottom)); /* 兼容iOS 11.2+ */
|
||||
.label {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
|
Loading…
x
Reference in New Issue
Block a user