在这个Angular Material Select dropdown demo中,我内嵌了一个边框半径和高度样式的更改,但它没有更改边框半径或高度。
<mat-form-field appearance="outline" style="border-radius: 25px; height: 10px">
<mat-label>Toppings</mat-label>
<mat-select [formControl]="toppings" panelClass="select-style">
<mat-option *ngFor="let topping of toppingList" [value]="topping"
>{{topping}}</mat-option
>
</mat-select>
</mat-form-field>
我们如何更改边界半径和字段高度?
1条答案
按热度按时间u7up0aaq1#
您需要定位表单字段类
请尝试以下代码:
custom-field
类添加到表单字段元素第一个
适用于材料15
要使内容居中,请添加以下样式