css flex

.component-upload-wrapper {
    position: relative;
     100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: wrap;

    .file-uploaded {
      flex: 1;
      border: 1px solid red;

      &:not(:nth-last-child(1)) {
        margin-right: 20px;
      }
    }
  }

  

原文地址:https://www.cnblogs.com/alantao/p/13845146.html