The last row, there are only two blocks and they got split on the left and right.
Is it possible to let they just aligned normally?
#wrap {
  width: 500px;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item {
  background: red;
  width: 32%;
  height: 20px;
  margin-top:9px;
}
<div id="wrap">
  <div class="item"></div>
  <div class="item"></div>
  <div class="item"></div>
  <div class="item"></div>
  <div class="item"></div>
</div>
