python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Multi line label on mat-form-field
I'm trying to display multiple lines on a mat-form-field label.
I tried to use
.mat-form-field-label {
white-space: normal !important;
}
But that overlaps the input field.
What can I do about tha...

David Pires
Votes: 0
Answers: 1
Change color of mat-select based on mat-option
So I have a dropdown:
<div class="drop-down" >
<mat-select>
<mat-option *ngFor="let role of roles | keyvalue" [value]="role">
...
CuriousCat11
Votes: 0
Answers: 2
How to sort dropdown values in alphabetical order in mat angular
As per Angular documentation, there is no orderBy pipe available to sort. As per the documentation I have to implement the sort in the component by myself. As I am very new to Angular, I am unsure, ho...
Doodles
Votes: 0
Answers: 1
Change color label
I use angular material and I have this input:
<mat-form-field appearance="legacy" class="col-sm-12 col-lg-6 w-100 p-3">
<mat-label>"outline fr...
Picco
Votes: 0
Answers: 1