zl程序教程

您现在的位置是:首页 >  前端

当前栏目

css flex

CSS flex
2023-09-14 08:58:48 时间
.component-upload-wrapper {
    position: relative;
    width: 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;
      }
    }
  }