References
Example
...
Usage
Structure
Code Block | ||
---|---|---|
| ||
<mat-form-field> <label class="required">Label Name</label> <input matInput type="text"> <mat-hint> Error message here </mat-hint> </mat-form-field> |
...
Use
disabled
tag within input, which will automatically pull in disabled input stylingCode Block language html <input matInput type="text" disabled="disabled"> OR <input matInput type="text" disabled>
Example
...