手机型号:iphone6s,系统版本:ios9.3.2,附上截图.
<scroll-view class="recommendScroll" enable-flex scroll-x scroll-y="false">
<view class="scrollItem" wx:for="{{recommendList}}" wx:key="id">
<image src="{{item.picUrl}}"></image>
<text>{{item.name}}</text>
</view>
</scroll-view>
/* 内容区域 */
.scrollItem {
width: 200rpx;
margin-right: 20rpx;
}
.recommendScroll {
display: flex;
}
.scrollItem image {
width: 200rpx;
height: 200rpx;
border-radius: 10rpx;
}
,请问怎么处理?
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
.scrollItem { flex-shrink: 0 }
试试这个样式
你在父级加一个强制不换行属性试试