在Angular Material 中設定mat-select 面板的樣式
要設定mat-select 面板的樣式,您可以在HTML 標記中指定自訂panelClass ,如您所做的:
<mat-select placeholder="Search for" [(ngModel)]="searchClassVal" panelClass="my-select-panel-class" (change)="onSearchClassSelect($event)"> <mat-option *ngFor="let class of searchClasses" [value]="class.value">{{class.name}}</mat-option> </mat-select>
但是,將CSS 樣式套用到此自訂面板類別有時可能會出現問題。讓我們探索幾個可能的解決方案:
使用::ng-deep:
利用::ng-deep 陰影穿透後代組合器強制樣式通過子組件樹:
<code class="css">::ng-deep .mat-select-content{ width:2000px; background-color: red; font-size: 10px; }</code>
使用ViewEncapsulation:
將封裝模式設定為ViewEncapsulation.None,以打破視圖封裝並套用樣式視圖直接從組件:
<code class="typescript">@Component({ .... encapsulation: ViewEncapsulation.None }) </code>
將樣式加入style.css:
使用!important 關鍵字強制樣式:
<code class="css">.mat-select-content{ width:2000px !important; background-color: red !important; font-size: 10px !important; } </code>
合併內聯樣式:
將內聯樣式直接套用於mat-option 元素:
<code class="html"><mat-option style="width:2000px; background-color: red; font-size: 10px;" ...></code>
這些方法應該可以讓您在Angular Material 中成功設定墊子選擇面板的樣式。
以上是如何在 Angular Material 中設定墊子選擇面板的樣式:不同技術指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!