我现在有30个数据,它只竖向,我设置了宽高和水平排列都不改变其样式
使用wx:for输出数组,怎么让其每隔几个一换行?Using wx:for to output an array, how to make it wrap every few lines?
使用wx:for输出数组,怎么让其每隔几个一换行?我现在有30个数据,它只竖向,我设置了宽高和水平排列都不改变其样式
I now have 30 data, which is only vertical. I set the width, height and horizontal arrangement without changing its style
回答:
这样?
flex 了解一下
display: flex;flex-wrap: wrap;
<view class="list"> <view wx:for="{{list}}"> ... </view><view>css:.list{ display:flex; flex-wrap:wrap;}// 如果for循环的内容长度一样,可设置一个宽度