【发布时间】:2020-04-20 15:57:33
【问题描述】:
我在这个网站上工作:
但由于某种原因,上下滚动的手指在手机上不起作用。尝试了 overflow-y: scroll in the .slide-container > 部分,但它不起作用。桌面鼠标滚轮和箭头工作。
我会错过什么?我只希望每个部分元素中的内容能够在手机和计算机上滚动浏览。最好隐藏侧滚动条。
.slide-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
overflow-x: hidden;
-ms-scroll-snap-type: x mandatory;
scroll-snap-type: x mandatory;
}
.slide-container > section {
height: 100vh;
width: 100%;
-ms-flex-negative: 0;
flex-shrink: 0;
position: relative;
scroll-snap-align: start;
overflow: scroll;
overscroll-behavior-y: contain;
padding: 100px 1em 1em;
}
【问题讨论】:
标签: css