With Angular Material, I'm having trouble to css override the .mat-form-field-hide-placeholder class that is automatically added to the parent mat-form-field tag when the input is out of focus. The goal is to always show the placeholder.
The code looks something like this:
<mat-form-field>
<mat-label>
Field label
</mat-label>
<input type="text" placeholder="placeholder text">
</mat-form-field>