gpt4 book ai didi

angular - 如何减小 MatSelect DropDown 面板的大小

转载 作者:行者123 更新时间:2023-12-03 14:25:19 26 4
gpt4 key购买 nike

我正在尝试减小 mat-select 下拉面板的默认大小,但无法弄清楚如何去做

我试过给 width ,试过在 angular mat-select 中覆盖面板类,但尺寸似乎没有减小

我的模板文件

    <div class="col-md-8">
<mat-form-field style="float: right">
<mat-select panelclass="my-panel" placeholder="Select Course"(selectionChange)="selectCourse($event,courses)" disableOptionCentering>
<mat-option *ngFor="let course of courses" [value]="course.courseId">
{{course.courseCode}}
</mat-option>
</mat-select>
</mat-form-field>
</div>

我的 Css 文件
 .my-panel {
background: orange;
height: 300px;
display: flex;
flex-direction: column;
justify-content: space-between;
min-width: 350px !important;
}

预期结果:

Expected Result

实际结果:
Actual Result

New Issue

最佳答案

您可以通过将以下 css 添加到主 styles.css 来设置 mat-select 的宽度文件。

.mat-form-field-infix{
width: 80px !important;
}

根据您的要求更改 80px。

关于angular - 如何减小 MatSelect DropDown 面板的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54103831/

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