Angular material - 弹性布局和卡片

Angular material - flex layout and cards

我对基于 Angular Material 的应用程序中的 flex 布局行为有疑问。我想要简单的 "card grid" 布局,其中 3 张卡片排成一排(最大的屏幕),2 张中号卡片和 1 张小屏幕卡片。 问题是当我在最大屏幕的最后一行只有一张卡片时,因为最后一张卡片的宽度是屏幕宽度的 100%。如何避免这个问题?

这是我当前的代码。

<div class="page-wrapper">
  <div fxLayout="row wrap" fxLayoutGap="16px" class="align" *ngIf="!loading">
    <mat-card fxFlex.lg="calc(33% - 16px)" fxFlex.lt-lg="calc(50% - 16px)" fxFlex.xs="calc(100% - 16px)"
              *ngFor="let post of posts">
      <mat-card-header>
        <mat-card-title>{{ getCleanString(post.title.rendered) }}</mat-card-title>
        <mat-card-subtitle>{{ post.date_gmt | date }}</mat-card-subtitle>
      </mat-card-header>
      <img matCardImage [src]="post['_embedded']['wp:featuredmedia'][0]['media_details'].sizes['medium'].source_url"
           class="card-image">
      <mat-card-content [innerHTML]="post.excerpt.rendered"></mat-card-content>
      <mat-card-actions align="start">
        <a mat-button color="primary" [href]="post.link">Czytaj więcej</a>
      </mat-card-actions>
    </mat-card>
  </div>
</div>

编辑:卡片之间的间隙没有问题。问题是最后一张卡片占整个布局的 100% 宽度(不是其他卡片的 1/3)。

尝试将 0 0 添加到 fxFlex.lg,如下所示:fxFlex.lg="0 1 calc(33% - 16px)".

这将删除 flex-grow。

注意:您必须将 margin-right: 16px; 添加到最后一个元素以获得正确的对齐方式