如何导入Angular Material Css

时间:2018-06-14 11:27:33

标签: angular-material angular-material2 angular-material-5

我正在尝试在项目中使用Angular Material并导入标签,但并非所有样式都在那里。

在我的HTML中:

<mat-form-field>
  <input matInput [matDatepicker]="picker" placeholder="Choose a date">
  <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
  <mat-datepicker #picker startView="year" [startAt]="startDate"></mat-datepicker>
</mat-form-field>

它应该显示:

enter image description here

但它显示:

enter image description here

我向styles.css添加了@import "~@angular/material/prebuilt-themes/indigo-pink.css";,日历显示正常,但文字字段看起来仍然很糟糕。

enter image description here

1 个答案:

答案 0 :(得分:1)

你需要在这里关注所有内容。 https://material.angular.io/guide/getting-started

尝试将此行添加到styles.css:@import "~@angular/material/prebuilt-themes/indigo-pink.css";

从此步骤开始:https://material.angular.io/guide/getting-started#step-4-include-a-theme

这些是您需要的输入:

import { MatDatepickerModule, MatFormFieldModule, MatNativeDateModule, MatInputModule } from '@angular/material';

import {BrowserAnimationsModule} from '@angular/platform-browser/animations';


@NgModule({    
imports: [BrowserModule, FormsModule, MatDatepickerModule, MatFormFieldModule, MatNativeDateModule, MatInputModule, BrowserAnimationsModule],
...
})