小程序 显示3个一排 自动换行

方法1:使用的是width: 31%;



  1212 
  1212 
  1212 
  1212  
.link {
 display: flex; flex-direction: row;
 flex-wrap: wrap; width: 654rpx;
 margin: 0 auto; position: relative;
 left: 5rpx; 
} 
.link_child {
 width: 31%;
 background: red;
 border: 1rpx solid black; 
} 
.link_child:not(:nth-child(3n)){
 margin-right: 10rpx; 
}

 

方法2:使用的 width: 200rpx;(需要是3的倍数)

 
  1 
  2 
  3 
  4 
  5 
  6  
.test {
 border: 2rpx solid black; 
}
.father {
 width: 660rpx;
 display:flex;
 flex-wrap:wrap;
 justify-content:space-between; 
} 
.child{
 width: 200rpx; 
}

 

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