繁体   English   中英

为什么 css 不能在 ion-header、ion-toolbar 和 ion-icon 上工作?

[英]Why css not working on ion-header, ion-toolbar and ion-icon?

我正在创建 Ionic 4 angular 应用程序,并在 ion-header、ion-toolbar 和 ion-icon 上使用了 css 样式。 但是 css 没有按预期工作?

这是我的stackblitz代码

.ts 文件

您尚未包含 styleUrls,因此未应用样式

请加:

styleUrls: ['/home.css']

您的配置将如下所示:

@Component({
  selector: 'page-home',
  templateUrl: 'home.html',
  styleUrls: ['home.css']
})

正确使用样式 url 作为 styleUrls: ['/home.css'],您正在覆盖 ionic 的内置功能,并且模板中没有该样式文件的链接

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM