溢出滚动和溢出隐藏导致iOS上的滚动问题

时间:2018-08-26 15:33:50

标签: html ios css

隐藏的溢出和溢出滚动在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>

0 个答案:

没有答案