Angular : 使用 bootstrap class "text-white" 的 ngClass 无法更改颜色
Angular : Color cannot be changed with ngClass using bootstrap class "text-white"
无法使用 ngClass 使用 bootstrap class“text-white”更改颜色。
代码:
[ngClass] = "{'text-white': log >= 5}"
Demo 如果 log 是一个数字,你的语法是正确的。首先检查它是否是数字然后确保 class 在应用程序
中的 css 中具有样式属性
在你的组件中css添加这个来检查
.text-white{
color:white;
}
无法使用 ngClass 使用 bootstrap class“text-white”更改颜色。
代码:
[ngClass] = "{'text-white': log >= 5}"
Demo 如果 log 是一个数字,你的语法是正确的。首先检查它是否是数字然后确保 class 在应用程序
中的 css 中具有样式属性在你的组件中css添加这个来检查
.text-white{
color:white;
}