How do you change the placeholder colour on a angular/material input placeholder?
<mat-form-field>
<input matInput placeholder="Name">
</mat-form-field>
How do you change the placeholder colour on a angular/material input placeholder?
<mat-form-field>
<input matInput placeholder="Name">
</mat-form-field>
One solution provided by material 2 itself found in example code. I have done a sample here:
Plunker
What options we have?
<mat-placeholder>
tag is deprecated: https://material.angular.io/components/form-field/api#MatPlaceholder/deep/
selector will be deprecated soon.::placeholder
selector is still experimental feature: https://developer.mozilla.org/en-US/docs/Web/CSS/::placeholderSo I would recommend to use input placeholder as an attribute only if your clients have modern browsers.