5 items per row, auto-resize items in flexbox

后端 未结 4 1604

I have this at the moment:

4条回答
  •  忘掉有多难
    2020-11-27 18:40

    try below css for five items in each row.

    .container {
      background: gray none repeat scroll 0 0;
      display: flex;
      flex-flow: row wrap;
      position: relative;
      width: auto;
    }
    
    .item {
      background: blue none repeat scroll 0 0;
      flex: 1 1 18%;
      height: auto;
      margin: 4px;
      padding: 20px 0;
      width: auto;
    }

提交回复
热议问题