小程序之scroll-view用法

小程序之scroll-view用法

水平滚动

<scroll-view class="box" scroll-x="true" >
  <view class="box-item" >1view>
  <view class="box-item" >2view>
  <view class="box-item" >3view>
scroll-view>
.box {
    width:100vw;
    height: 200rpx;
    /*white-space 不能丢  */
    white-space: nowrap;
    border: 1px solid red;
    box-sizing: border-box
}
.box-item {
    width: 45%;
    height:100%;
    border:2rpx solid green;
    box-sizing: border-box;
    display: inline-block
}

小程序之scroll-view用法_第1张图片

你可能感兴趣的:(小程序)