微信官方相关参数介绍:
demo.wxml
<scroll-view class="row_1" scroll-x>
<view class="box">
商品详情
</view>
<view class="box">
规划参数
</view>
<view class="box">
商品评价
</view>
<view class="box">
物流信息
</view>
<view class="box">
分享信息
</view>
</scroll-view>
demo.wxss
.row_1 {
height:80px;
background-color: rgb(231, 231, 231);
white-space: nowrap; /* 不换行 */
}
.box {
width: 80px;
height: 40px;
background-color: aquamarine;
color: black;
margin-left: 10px;
margin-top: 20px;
text-align: center;
line-height: 40px;
display: inline-block; /* 行内元素 */
}