小程序瀑布流布局列表

小程序瀑布流布局列表

单纯的css3来实现瀑布流布局,但是有很多局限性,比如价格的升序降序等~
还希望各位多多指教撒~

/*wxml*/

  
    
    
  
  
    
    
  

.list {
  padding: 20rpx;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
 
.list .list-half {
  width: 346rpx;
  box-sizing: border-box;
}
.list-half .card {
  background-color: #fff;
  border-radius: 20rpx;
  overflow: hidden;
  margin-bottom: 30rpx;
  padding-bottom: 20rpx;
}

你可能感兴趣的:(前端)