隐藏的溢出和溢出滚动在iOS上不起作用。 使用以下样式,将无法再在X轴上滚动:
这可能导致什么?我在Android上没有任何问题。
.container {
overflow-y: scroll;
width: 100%;
position: absolute;
overflow-x: scroll;
}
.scroll-container {
min-width: 100%;
overflow: scroll;
overflow-y: hidden;
display: inline-block;
padding-bottom: 50px;
}
标记:
<div class="container">
<!-- CONTENT -->
<div class="scroll-container">
<!-- CONTENT-->
</div>
</div>