[scroll-view] 请教scroll-view 横向滚动的遮挡问题
发布于 6 年前 作者 weitan 19695 次浏览 来自 问答

用scroll-view 横向滚动,发现两边总会有遮挡(见图),请问,怎样能够去掉遮挡呢?

scroll-view {
    display: flex;
    white-space: nowrap;
    width:100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border: 1px dashed red;
}
scroll-view view {
  display: inline-block;
  width:30%;
}
<scroll-view scroll-x="true" upper-threshold="0px" scroll-with-animation>
<view >9月11号</view>
<view >9月12号</view>
<view >9月13号</view>
<view >9月13号</view>
<view >9月13号</view>
</scroll-view>
回到顶部