我使用 Angular Material 2,我想要一个卡片标题图标按钮。如何将按钮设置在右侧?
我想在标题中设置按钮。我该怎么做?我排除了类别代码,因为没有问题。在打字稿代码中,只有一个用于添加更多卡片的 for 循环和一个用于单击卡片的虚拟方法。
.healthy-search {
width: 100%
}
.healthy-card {
margin-right: 5px;
margin-bottom: 5px;
}
<div class="flex-container" fxLayout="row" fxLayout.xs="column" fxLayoutAlign="center center" fxLayoutAlign.xs="start">
<div class="flex-item" fxFlex="90%" fxFlex.xs="90%">
<mat-form-field class="healthy-search">
<textarea matInput placeholder="Suche"></textarea>
</mat-form-field>
</div>
</div>
<div class="flex-container" fxLayout="row" fxLayout.xs="column" fxLayoutAlign="center center" fxLayoutAlign.xs="start">
<div class="flex-item" fxFlex="85%" fxFlex.xs="85%">
<mat-expansion-panel>
<!-- Here is the Category -->
<!--Elements of Category -->
<div class="flex-container" fxLayoutWrap fxLayout="row" fxLayout.xs="column" fxLayoutAlign="center center" fxLayoutAlign.xs="start">
<div class="flex-item healthy-card" fxFlex="400px" *ngFor="let number of numbers" (click)="cardClick()">
<mat-card class="example-card">
<mat-card-header>
<mat-card-title>Title {{number}}</mat-card-title>
<button mat-icon-button fxLayoutAlign="right">
<mat-icon aria-label="Example icon-button with a heart icon">Edit</mat-icon>
</button>
<button mat-icon-button fxLayoutAlign="right">
<mat-icon aria-label="Example icon-button with a heart icon">Delete</mat-icon>
</button>
</mat-card-header>
<img mat-card-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" alt="Photo of a Shiba Inu">
<mat-card-content>
<p>
The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan. A small, agile dog that copes
very well with mountainous terrain, the Shiba Inu was originally bred for hunting.
</p>
</mat-card-content>
</mat-card>
</div>
</div>
</mat-expansion-panel>
</div>
</div>
天琴座