Google / iPhone 输出不同,iphone 有很多白色 space
Google / iPhone outputs differ, iphone has a lot of white space
Viewport 似乎无法在我的单元格上正常工作 phone,我不确定为什么它开始缩小时出现一堆 白色 space 沿着屏幕的右侧(但在 Google 模拟器上按预期显示)。
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1" />
Iphone输出
Google Iphone
尝试将以下内容添加到 CSS:
html, body {
height: 100%;
overflow-x: hidden;
}
试试这个
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Viewport 似乎无法在我的单元格上正常工作 phone,我不确定为什么它开始缩小时出现一堆 白色 space 沿着屏幕的右侧(但在 Google 模拟器上按预期显示)。
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1" />
Iphone输出
Google Iphone
尝试将以下内容添加到 CSS:
html, body {
height: 100%;
overflow-x: hidden;
}
试试这个
<meta name="viewport" content="width=device-width, initial-scale=1.0">