gpt4 book ai didi

angular-material - 如何导入 Angular Material Css

转载 作者:行者123 更新时间:2023-12-04 16:05:10 26 4
gpt4 key购买 nike

我正在尝试在我的项目中使用 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

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

enter image description here

最佳答案

你需要遵循这里的一切。 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],
...
})

关于angular-material - 如何导入 Angular Material Css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50856472/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com