我有垂直滚动条可见但不起作用。我没有在我的CSS代码中找到问题,或者我有一个JavaScript阻止它。
这是我的CSS和HTML代码:
html {
height: 100%;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
background: #ececec;
}
body {
font: 400 14px / 1.42857143 "Roboto", sans-serif;
padding-top: 48px;
box-sizing: border-box;
}
.page-wrapper{
position:relative;
margin:0 auto;
width:100%;
min-width:300px;
min-height:400px;
overflow:hidden;
}

<html>
<body>
<div class="page-wrapper"></div>
</body>
</html>
&#13;
答案 0 :(得分:0)
html {overflow-y: scroll;}
将始终显示滚动条占位符。删除或更改为auto