我試圖讓角材2卡工作使用靈活佈局,以便瀏覽器調整大小的列數我渲染變化。我試圖實現類似Google Keep的工作原理。角度材料2卡與靈活佈局重疊海誓山盟
<div *ngIf="condition == true">
<div fxLayout="row" fxLayoutWrap="wrap" fxLayoutAlign="start start" fxLayoutGap="15px" >
<md-card fxFlex="calc(25%+15px)" *ngFor="let d of details">
<md-card-content>
Content
</md-card-content>
</md-card>
</div>
</div>
<button md-button (click)="condition = !condition">Toggle</button>
運行this plunker不過,你可以看到,當過一系列的角度材質卡需要包裝,它們重疊一點點。
有誰知道我需要做什麼用flex-layout來獲得下一行在項目之間有一定的餘量嗎?它們具有fxLayoutGap
屬性,但似乎只適用於與內容緊鄰的對象之間的水槽,而不在下面或上面。