How do I highlight the contents of a textbox in Angular? the following is not working. Currently using Material textbox.
Need to apply it conditionally, based on boolean variable highlightTextFlag, maybe with ngstyle .
Sample:
input::first-line {
background-color: green !important;
}
Actual code:
<mat-form-field>
<mat-label>Test</mat-label>
<input
matInput
[ngStyle]="{'input::first-line': 'green' }"
>
</mat-form-field>