Hi Is it possible to use hover in ngStyle
<mat-option *ngFor="let option of matSelectOptions"
value="option.value"
[ngStyle]="{'color': matSelectOptionsTextColor,
'background-color': matSelectOptionsBackgroundColor,
'hover:font-weight': 'bold'}">
{{option.text}}
</mat-option>
I would like the Option Text to be bold on hover...