答案 0 :(得分:0)
mat-horizontal-stepper
具有将文本/标签放置在底部的属性。您可以使用标签来描述步进值。步进值显示在顶部,标签显示在底部。
您所需要的只是添加`labelPosition =“ bottom”:
<mat-horizontal-stepper labelPosition="bottom" #stepper>
<mat-step>
...
<div>
<button mat-button matStepperPrevious>Back</button>
<button mat-button matStepperNext>Next</button>
</div>
</mat-step>
</mat-horizontal-stepper>
更多内容:https://material.angular.io/components/stepper/overview
以下是Angular Material的一个示例: