当选项打开时如何更改 mat-select 的属性?
<mat-select class="selector">
<mat-option><mat-option>
</mat-select>
.selector:focus {
color: green;
}
我尝试使用焦点,但效果不太好,可以单击垫选择而不打开选项。
解决方案:使用解决了问题
.mat-select[aria-expanded="true"] {
color: green
} Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
我使用 .mat-select[aria-expanded="true"] { color: green } 解决了这个问题