ios h5页面回弹

遇到了,记录一下、

也不知道怎么解决了,我反正是改了body的样式,就改了一个width:100%,然后就好了

下面是别人的css代码 应该是可以的

/* 初始化 */
* {
    margin: 0;
    padding: 0;
}
/* 基本样式 */
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body {
    box-sizing: border-box;
    position: relative;
}
/* 超出滚动 */
#app {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

你可能感兴趣的:(前端,css,html,前端)