use*_*948 5 angular-material angular stepper mat-stepper
vertical line是否可以在最后一步中扩展?
模板脚本可以阻止它:
<div class="mat-vertical-content-container" [class.mat-stepper-vertical-line]="!isLast">
Run Code Online (Sandbox Code Playgroud)
感谢您的任何建议。
小智 2
在你的CSS中:
::ng-deep .mat-step:last-child .mat-vertical-content-container {
border-left: 1px solid rgba(0, 0, 0, 0.12) !important;
}
Run Code Online (Sandbox Code Playgroud)