How to style Select List from Angular Material:
<md-select placeholder="Favorite food" [(ngModel)]="selectedValue" name="food">
<md-option *ngFor="let food of foods" [value]="food.value">
{{food.viewValue}}
</md-option>
</md-select>
For example, I need to make border and add arrow on the right corner.
How to do this in Material, just to modify CSS file or does exist special approach?
mat-select-placeholderas` {display: none !important;}` It does not work