<scroll-view class="box" scroll-x="true" >
  <view class="box-item" >1</view>
  <view class="box-item" >2</view>
  <view class="box-item" >3</view>
</scroll-view>




.box {
width:100vw;
height: 200rpx;
white-space: nowrap; /*white-space 不能丢*/
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 使用

 




 

相关文章:

  • 2021-06-25
  • 2021-05-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-02
  • 2021-10-01
  • 2021-07-30
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
相关资源
相似解决方案