Bootstrap

解决flex布局justify-content导致的多于元素对不齐问题

有以下场景

    <style>
      .wrapper {
     
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 600px;
        background-color: #aff;
      }
      .item {
     
        width: 110px;
        height: 110px;
        background-color: #faa;
      }

    </style>
  </head>
  <body>
    <div class="wrapper">
      <div class="item"></div></
;