gpt4 book ai didi

css - 如何在 mat-h​​orizo​​ntal-stepper 中为不同形式设置不同宽度

转载 作者:行者123 更新时间:2023-12-02 03:18:53 25 4
gpt4 key购买 nike

我想在mat-step中为不同的表单设置不同的宽度。第一个表单的内容为400px的宽度,第二个表单的内容为700px的宽度。

<mat-horizontal-stepper labelPosition="bottom" #stepper>
<mat-step [stepControl]="firstFormGroup">
<form [formGroup]="firstFormGroup">
<ng-template matStepLabel>Fill out your name</ng-template>
<div style="width:400px">
<mat-form-field>
<input matInput placeholder="Last name, First name" formControlName="firstCtrl" required>
</mat-form-field>

</div>

<div>
<button mat-button matStepperNext>Next</button>
</div>
</form>
</mat-step>
<mat-step [stepControl]="secondFormGroup">
<form [formGroup]="secondFormGroup">
<ng-template matStepLabel>Fill out your address</ng-template>
<div style="width:700px">
<mat-form-field>
<input matInput placeholder="Address" formControlName="secondCtrl" required>
</mat-form-field>
</div>


<div>
<button mat-button matStepperPrevious>Back</button>
<button mat-button matStepperNext>Next</button>
</div>
</form>
</mat-step>
<mat-step>
<ng-template matStepLabel>Done</ng-template>
You are now done.
<div>
<button mat-button matStepperPrevious>Back</button>
<button mat-button (click)="stepper.reset()">Reset</button>
</div>
</mat-step>
</mat-horizontal-stepper>

但是它不起作用,任何人都可以帮助我如何实现这一目标。

最佳答案

由于只有 mat-step 组件 的可见性发生变化,因此您应该覆盖不可见组件的宽度。

CSS 文件中使用以下代码:

::ng-deep .mat-horizontal-stepper-content[aria-expanded="false"] {
width: 0px !important;
}

使用此功能后,您可以为每个步骤使用不同的宽度尺寸。

关于css - 如何在 mat-h​​orizo​​ntal-stepper 中为不同形式设置不同宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55400932/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com