Ionic 如何为“项目原生”类编写css?

qjp7pelc  于 2022-12-08  发布在  Ionic
关注(0)|答案(2)|浏览(131)

我已经尝试在ion-item中为“item-native”类编写css,但是没有应用。我如何为“item-native”类编写自定义css

fcg9iug3

fcg9iug31#

使用此选项:

ion-item::part(native) {
 /* Custom CSS here */
}
hl0ma9xz

hl0ma9xz2#

如果你的风格不工作,这意味着要么你的其他风格是覆盖你的自定义css或你写了你的风格在错误的地方。
先在css的根目录下写一写,测试一下它是否有效。

.item-native {
  // Add your custom css here, write important at the end like this
   color: red !important;
}

相关问题